instance_labels
list
instance_words
list
instance_tags
list
instance_groups
list
instance_languages
list
[ "mono" ]
[ [ "Physical", "Activity", "VS", "Mental", "Stress", "Sorry", "but", "I", "do", "not", "need", "any", "more", "responses.", "Thx", "anyway", "tho", ":)" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Physical", "Activity", "VS", "Mental", "Stress", "Sorry", "but", "I", "do", "not", "need", "any", "more", "responses.", "Thx", "anyway", "tho", ":)" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "LambdaTest", "●", "Automation", "Testing", "●", "Quick", "Guide", "To", "Run", "Ruby", "Tests", "On", "LambdaTest", "Selenium", "Grid", "Quick", "Guide", "To", "Run", "Ruby", "Tests", "On", "LambdaTest", "Selenium", "Grid", "LambdaTest", "Selenium", "Automation", "Grid", "is", "a", "secure,", "scalable,", "and", "reliable", "Selenium", "Grid", "on", "cloud", "that", "can", "help", "you", "run", "your", "Ruby", "automation", "scripts", "on", "2000+", "different", "browsers", "and", "operating", "system", "environments.", "The", "grid", "is", "specifically", "built", "for", "high", "performance", "and", "gives", "you", "not", "only", "a", "greater", "browser", "coverage", "but", "also", "an", "ability", "to", "run", "automation", "tests", "in", "parallel.", "This", "helps", "you", "reduce", "your", "automation", "test", "execution", "time", "significantly.", "This", "post", "will", "help", "you", "quickly", "get", "started", "with", "running", "Ruby", "test", "scripts", "on", "LambdaTest", "Selenium", "Grid.", "Prerequisites", "First,", "you", "would", "have", "to", "install", "Ruby", "and", "gem", "on", "your", "local", "system.", "We", "recommend", "installing", "the", "latest", "version", "of", "Ruby.", "Installing", "these", "platforms", "is", "a", "little", "different", "in", "each", "operating", "system", "For", "windows,", "you", "can", "download", "the", "latest", "installed", "the", "official", "website.", "If", "you", "are", "using", "Linux", "or", "Ubuntu", "OS,", "you", "can", "run", "a", "simple", "apt", "command", "like", "below.", "You", "can", "also", "refer", "to", "this", "doc", "to", "know", "more", "about", "which", "command", "suits", "your", "OS", "better.", "$", "sudo", "apt-get", "install", "ruby-full", "1", "$", "sudo", "apt", "-", "get", "install", "ruby", "-", "full", "If", "you", "are", "using", "MacOS", "you", "can", "run", "a", "homebrew", "command", "like", "this", "$", "brew", "install", "ruby", "1", "$", "brew", "install", "ruby", "Installing", "Selenium", "Dependencies", "For", "Ruby", "Once", "you", "have", "ruby", "and", "gem", "setup,", "you", "would", "now", "have", "to", "install", "Selenium", "dependencies.", "You", "can", "install", "Selenium", "via", "simple", "gem", "command", "gem", "install", "selenium-webdriver", "1", "gem", "install", "selenium", "-", "webdriver", "Sample", "Ruby", "and", "Selenium", "Test", "To", "Get", "You", "started", "Once", "you", "have", "installed", "necessary", "dependencies,", "you", "are", "all", "set", "to", "run", "your", "Ruby", "automation", "scripts", "on", "LambdaTest", "Selenium", "grid.", "To", "get", "started", "you", "can", "try", "out", "the", "code", "below.", "It’s", "a", "simple", "Ruby", "scripts", "that", "opens", "up", "Google.com,", "search", "LambdaTest", "in", "Google", "search,", "and", "then", "output", "the", "title", "of", "the", "search", "result", "page.", "You", "can", "also", "fork", "it", "from", "our", "Ruby", "GitHub", "repository", "here.", "//Sample", "Ruby", "and", "Selenium", "Automation", "Script", "require'selenium-webdriver'", "require", "'test/unit'", "class", "LtTest", "<", "Test::Unit::TestCase", "\"\"\"", "LambdaTest", "selenium", "automation", "sample", "example", "Configuration", "----------", "username:", "Username", "can", "be", "found", "at", "automation", "dashboard", "accessToken:", "AccessToken", "can", "be", "generated", "from", "automation", "dashboard", "or", "profile", "section", "Result", "-------", "Execute", "Ruby", "Automation", "Tests", "on", "LambdaTest", "Distributed", "Selenium", "Grid", "\"\"\"", "def", "setup", "\"\"\"", "Setup", "remote", "driver", "Params", "----------", "platform", ":", "Supported", "platform", "-", "(Windows", "10,", "Windows", "8.1,", "Windows", "8,", "Windows", "7,", "macOS", "High", "Sierra,", "macOS", "Sierra,", "OS", "X", "El", "Capitan,", "OS", "X", "Yosemite,", "OS", "X", "Mavericks)", "browserName", ":", "Supported", "platform", "-", "(chrome,", "firefox,", "Internet", "Explorer,", "MicrosoftEdge)", "version", ":", "Supported", "list", "of", "version", "can", "be", "found", "at", "https://www.lambdatest.com/capabilities-generator/", "Result", "-------", "\"\"\"", "username=", "\"{username}\"", "accessToken=", "\"{accessToken}\"", "gridUrl", "=", "\"hub.lambdatest.com/wd/hub\"", "caps", "=", "{", ":browserName", "=>", "\"chrome\",", ":version", "=>", "\"67.0\",", ":platform", "=>", "\"win10\",", ":name", "=>", "\"LambdaTest", "ruby", "google", "search", "name\",", ":build", "=>", "\"LambdaTest", "ruby", "google", "search", "build\",", ":network", "=>", "true,", ":visual", "=>", "true,", ":video", "=>", "true,", ":console", "=>", "true", "}", "puts", "(caps)", "#", "URL:", "https://{username}:{accessToken}@hub.lambdatest.com/wd/hub", "@driver", "=", "Selenium::WebDriver.for(:remote,", ":url", "=>", "\"https://\"+username+\":\"+accessToken+\"@\"+gridUrl,", ":desired_capabilities", "=>", "caps)", "end", "def", "test_Login", "\"\"\"", "Setup", "remote", "driver", "Params", "----------", "Execute", "test:", "navigate", "google.com", "search", "LambdaTest", "Result", "-------", "print", "title", "\"\"\"", "puts(\"Searching", "LambdaTest", "on", "google.com", "\")", "sleep(15)", "@driver.get(\"https://www.google.com/ncr\")", "elem", "=", "@driver.find_element(:name,", "'q')", "elem.send_keys(\"LambdaTest.com\")", "elem.submit()", "puts(\"Printing", "title", "of", "current", "page", ":\"[email protected])", "end", "def", "teardown", "\"\"\"", "Quit", "selenium", "driver", "\"\"\"", "@driver.quit", "end", "end", "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", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "//Sample", "Ruby", "and", "Selenium", "Automation", "Script", "require'selenium-webdriver'", "require" ], [ "'test/unit'", "class", "LtTest", "<", "Test", "::", "Unit", "::", "TestCase", "\"\"", "\"", "LambdaTest", "selenium", "automation", "sample", "example", "Configuration", "----------", "username:", "Username", "can", "be", "found", "at", "automation", "dashboard", "accessToken:", "AccessToken", "can", "be", "generated", "from", "automation", "dashboard", "or", "profile", "section", "Result", "-------", "Execute", "Ruby", "Automation", "Tests", "on", "LambdaTest", "Distributed", "Selenium", "Grid", "\"", "\"\"", "def", "setup", "\"\"", "\"", "Setup", "remote", "driver", "Params", "----------", "platform", ":", "Supported", "platform", "-", "(Windows", "10,", "Windows", "8.1,", "Windows", "8,", "Windows", "7,", "macOS", "High", "Sierra,", "macOS", "Sierra,", "OS", "X", "El", "Capitan,", "OS", "X", "Yosemite,", "OS", "X", "Mavericks)", "browserName", ":", "Supported", "platform", "-", "(chrome,", "firefox,", "Internet", "Explorer,", "MicrosoftEdge)", "version", ":", "Supported", "list", "of", "version", "can", "be", "found", "at", "https://www.lambdatest.com/capabilities-generator/", "Result", "-------", "\"", "\"\"", "username", "=", "\"{username}\"", "accessToken", "=", "\"{accessToken}\"", "gridUrl", "=", "\"hub.lambdatest.com/wd/hub\"", "caps", "=", "{", ":", "browserName", "=", ">", "\"chrome\",", ":", "version", "=", ">", "\"67.0\",", ":", "platform", "=", ">", "\"win10\",", ":", "name", "=", ">", "\"LambdaTest", "ruby", "google", "search", "name\",", ":", "build", "=", ">", "\"LambdaTest", "ruby", "google", "search", "build\",", ":", "network", "=", ">", "true,", ":", "visual", "=", ">", "true,", ":", "video", "=", ">", "true,", ":", "console", "=", ">", "true", "}", "puts", "(", "caps", ")", "#", "URL:", "https://{username}:{accessToken}@hub.lambdatest.com/wd/hub", "@", "driver", "=", "Selenium", "::", "WebDriver.", "for", "(", ":", "remote,", ":", "url", "=", ">", "\"https://\"", "+", "username", "+", "\":\"", "+", "accessToken", "+", "\"@\"", "+", "gridUrl,", ":", "desired_capabilities", "=", ">", "caps", ")", "end", "def", "test", "_", "Login", "\"\"", "\"", "Setup", "remote", "driver", "Params", "----------", "Execute", "test:", "navigate", "google.com", "search", "LambdaTest", "Result", "-------", "print", "title", "\"", "\"\"", "puts", "(", "\"Searching", "LambdaTest", "on", "google.com", "\"", ")", "sleep", "(", "15", ")", "@", "driver.", "get", "(", "\"https://www.google.com/ncr\"", ")", "elem", "=", "@", "driver.", "find_element", "(", ":", "name,", "'q'", ")", "elem.", "send_keys", "(", "\"LambdaTest.com\"", ")", "elem.", "submit", "(", ")", "puts", "(", "\"Printing", "title", "of", "current", "page", ":\"", "+", "@", "driver.", "title", ")", "end", "def", "teardown", "\"\"", "\"", "Quit", "selenium", "driver", "\"", "\"\"", "@", "driver.", "quit", "end", "end", "Here’s", "how", "you", "can", "execute", "the", "test", "from", "your", "terminal.", "ruby", "google-search-lambdatest.rb", "1", "ruby", "google", "-", "search", "-", "lambdatest.", "rb", "The", "first", "thing", "to", "note", "in", "this", "code", "is", "the", "use", "of", "remote", "webdriver.", "To", "access", "LambdaTest", "grid,", "you", "would", "have", "to", "invoke", "remote", "webdriver", "instead", "of", "local", "webdrivers.", "In", "addition,", "the", "browser", "enthronement", "details", "are", "passed", "on", "through", "desired_capabilities.", "In", "this", "example", "we", "are", "running", "a", "test", "on", "Windows", "10,", "Chrome", "67", "environment.", "You", "can", "test", "your", "own", "choice", "of", "an", "environment", "by", "changing", "the", "parameters", "in", "the", "object.", "You", "can", "leverage", "our", "capabilities", "generator", "tool", "to", "create", "code", "for", "your", "environments.", "LambdaTest", "Capability", "Generator", "Tool" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "es", "es", "es", "es", "es", "es", "es", "es", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "co", "co", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "es", "es", "es", "es", "es", "es", "es", "es", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "es", "es", "en", "de", "de", "de", "de", "en", "pt", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "pt", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "nl", "nl", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "de", "de", "fr", "fr", "fr", "fr", "ro", "ro", "ro", "de", "de", "de", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "nl", "en", "en", "en", "en", "en", "pt", "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "es", "es", "es", "es", "es", "es", "es", "es", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "de", "de", "de", "de", "en", "nl", "nl", "nl", "nl", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "it", "it", "it", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "co", "co", "co", "de", "de", "de", "pt", "pt", "en", "en", "en", "de", "de", "de", "de", "de", "de", "co", "de", "de", "de", "it", "it", "it", "it", "co", "co", "co", "co", "es", "es", "es", "en", "en", "fr", "de", "de", "de", "fr", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "de", "de", "en", "en", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "LambdaTest", "●", "Automation", "Testing", "●", "Quick", "Guide", "To", "Run", "Ruby", "Tests", "On", "LambdaTest", "Selenium", "Grid", "Quick", "Guide", "To", "Run", "Ruby", "Tests", "On", "LambdaTest", "Selenium", "Grid", "LambdaTest", "Selenium", "Automation", "Grid", "is", "a", "secure,", "scalable,", "and", "reliable", "Selenium", "Grid", "on", "cloud", "that", "can", "help", "you", "run", "your", "Ruby", "automation", "scripts", "on", "2000+", "different", "browsers", "and", "operating", "system", "environments.", "The", "grid", "is", "specifically", "built", "for", "high", "performance", "and", "gives", "you", "not", "only", "a", "greater", "browser", "coverage", "but", "also", "an", "ability", "to", "run", "automation", "tests", "in", "parallel.", "This", "helps", "you", "reduce", "your", "automation", "test", "execution", "time", "significantly.", "This", "post", "will", "help", "you", "quickly", "get", "started", "with", "running", "Ruby", "test", "scripts", "on", "LambdaTest", "Selenium", "Grid.", "Prerequisites", "First,", "you", "would", "have", "to", "install", "Ruby", "and", "gem", "on", "your", "local", "system.", "We", "recommend", "installing", "the", "latest", "version", "of", "Ruby.", "Installing", "these", "platforms", "is", "a", "little", "different", "in", "each", "operating", "system", "For", "windows,", "you", "can", "download", "the", "latest", "installed", "the", "official", "website.", "If", "you", "are", "using", "Linux", "or", "Ubuntu", "OS,", "you", "can", "run", "a", "simple", "apt", "command", "like", "below.", "You", "can", "also", "refer", "to", "this", "doc", "to", "know", "more", "about", "which", "command", "suits", "your", "OS", "better.", "$", "sudo", "apt-get", "install", "ruby-full", "1", "$", "sudo", "apt", "-", "get", "install", "ruby", "-", "full", "If", "you", "are", "using", "MacOS", "you", "can", "run", "a", "homebrew", "command", "like", "this", "$", "brew", "install", "ruby", "1", "$", "brew", "install", "ruby", "Installing", "Selenium", "Dependencies", "For", "Ruby", "Once", "you", "have", "ruby", "and", "gem", "setup,", "you", "would", "now", "have", "to", "install", "Selenium", "dependencies.", "You", "can", "install", "Selenium", "via", "simple", "gem", "command", "gem", "install", "selenium-webdriver", "1", "gem", "install", "selenium", "-", "webdriver", "Sample", "Ruby", "and", "Selenium", "Test", "To", "Get", "You", "started", "Once", "you", "have", "installed", "necessary", "dependencies,", "you", "are", "all", "set", "to", "run", "your", "Ruby", "automation", "scripts", "on", "LambdaTest", "Selenium", "grid.", "To", "get", "started", "you", "can", "try", "out", "the", "code", "below.", "It’s", "a", "simple", "Ruby", "scripts", "that", "opens", "up", "Google.com,", "search", "LambdaTest", "in", "Google", "search,", "and", "then", "output", "the", "title", "of", "the", "search", "result", "page.", "You", "can", "also", "fork", "it", "from", "our", "Ruby", "GitHub", "repository", "here.", "//Sample", "Ruby", "and", "Selenium", "Automation", "Script", "require'selenium-webdriver'", "require", "'test/unit'", "class", "LtTest", "<", "Test::Unit::TestCase", "\"\"\"", "LambdaTest", "selenium", "automation", "sample", "example", "Configuration", "----------", "username:", "Username", "can", "be", "found", "at", "automation", "dashboard", "accessToken:", "AccessToken", "can", "be", "generated", "from", "automation", "dashboard", "or", "profile", "section", "Result", "-------", "Execute", "Ruby", "Automation", "Tests", "on", "LambdaTest", "Distributed", "Selenium", "Grid", "\"\"\"", "def", "setup", "\"\"\"", "Setup", "remote", "driver", "Params", "----------", "platform", ":", "Supported", "platform", "-", "(Windows", "10,", "Windows", "8.1,", "Windows", "8,", "Windows", "7,", "macOS", "High", "Sierra,", "macOS", "Sierra,", "OS", "X", "El", "Capitan,", "OS", "X", "Yosemite,", "OS", "X", "Mavericks)", "browserName", ":", "Supported", "platform", "-", "(chrome,", "firefox,", "Internet", "Explorer,", "MicrosoftEdge)", "version", ":", "Supported", "list", "of", "version", "can", "be", "found", "at", "https://www.lambdatest.com/capabilities-generator/", "Result", "-------", "\"\"\"", "username=", "\"{username}\"", "accessToken=", "\"{accessToken}\"", "gridUrl", "=", "\"hub.lambdatest.com/wd/hub\"", "caps", "=", "{", ":browserName", "=>", "\"chrome\",", ":version", "=>", "\"67.0\",", ":platform", "=>", "\"win10\",", ":name", "=>", "\"LambdaTest", "ruby", "google", "search", "name\",", ":build", "=>", "\"LambdaTest", "ruby", "google", "search", "build\",", ":network", "=>", "true,", ":visual", "=>", "true,", ":video", "=>", "true,", ":console", "=>", "true", "}", "puts", "(caps)", "#", "URL:", "https://{username}:{accessToken}@hub.lambdatest.com/wd/hub", "@driver", "=", "Selenium::WebDriver.for(:remote,", ":url", "=>", "\"https://\"+username+\":\"+accessToken+\"@\"+gridUrl,", ":desired_capabilities", "=>", "caps)", "end", "def", "test_Login", "\"\"\"", "Setup", "remote", "driver", "Params", "----------", "Execute", "test:", "navigate", "google.com", "search", "LambdaTest", "Result", "-------", "print", "title", "\"\"\"", "puts(\"Searching", "LambdaTest", "on", "google.com", "\")", "sleep(15)", "@driver.get(\"https://www.google.com/ncr\")", "elem", "=", "@driver.find_element(:name,", "'q')", "elem.send_keys(\"LambdaTest.com\")", "elem.submit()", "puts(\"Printing", "title", "of", "current", "page", ":\"[email protected])", "end", "def", "teardown", "\"\"\"", "Quit", "selenium", "driver", "\"\"\"", "@driver.quit", "end", "end", "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", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "//Sample", "Ruby", "and", "Selenium", "Automation", "Script", "require'selenium-webdriver'", "require" ] ], [ [ "'test/unit'", "class", "LtTest", "<", "Test", "::", "Unit", "::", "TestCase", "\"\"", "\"", "LambdaTest", "selenium", "automation", "sample", "example", "Configuration", "----------", "username:", "Username", "can", "be", "found", "at", "automation", "dashboard", "accessToken:", "AccessToken", "can", "be", "generated", "from", "automation", "dashboard", "or", "profile", "section", "Result", "-------", "Execute", "Ruby", "Automation", "Tests", "on", "LambdaTest", "Distributed", "Selenium", "Grid", "\"", "\"\"", "def", "setup", "\"\"", "\"", "Setup", "remote", "driver", "Params", "----------", "platform", ":", "Supported", "platform", "-", "(Windows", "10,", "Windows", "8.1,", "Windows", "8,", "Windows", "7,", "macOS", "High", "Sierra,", "macOS", "Sierra,", "OS", "X", "El", "Capitan,", "OS", "X", "Yosemite,", "OS", "X", "Mavericks)", "browserName", ":", "Supported", "platform", "-", "(chrome,", "firefox,", "Internet", "Explorer,", "MicrosoftEdge)", "version", ":", "Supported", "list", "of", "version", "can", "be", "found", "at", "https://www.lambdatest.com/capabilities-generator/", "Result", "-------", "\"", "\"\"", "username", "=", "\"{username}\"", "accessToken", "=", "\"{accessToken}\"", "gridUrl", "=", "\"hub.lambdatest.com/wd/hub\"", "caps", "=", "{", ":", "browserName", "=", ">", "\"chrome\",", ":", "version", "=", ">", "\"67.0\",", ":", "platform", "=", ">", "\"win10\",", ":", "name", "=", ">", "\"LambdaTest", "ruby", "google", "search", "name\",", ":", "build", "=", ">", "\"LambdaTest", "ruby", "google", "search", "build\",", ":", "network", "=", ">", "true,", ":", "visual", "=", ">", "true,", ":", "video", "=", ">", "true,", ":", "console", "=", ">", "true", "}", "puts", "(", "caps", ")", "#", "URL:", "https://{username}:{accessToken}@hub.lambdatest.com/wd/hub", "@", "driver", "=", "Selenium", "::", "WebDriver.", "for", "(", ":", "remote,", ":", "url", "=", ">", "\"https://\"", "+", "username", "+", "\":\"", "+", "accessToken", "+", "\"@\"", "+", "gridUrl,", ":", "desired_capabilities", "=", ">", "caps", ")", "end", "def", "test", "_", "Login", "\"\"", "\"", "Setup", "remote", "driver", "Params", "----------", "Execute", "test:", "navigate", "google.com", "search", "LambdaTest", "Result", "-------", "print", "title", "\"", "\"\"", "puts", "(", "\"Searching", "LambdaTest", "on", "google.com", "\"", ")", "sleep", "(", "15", ")", "@", "driver.", "get", "(", "\"https://www.google.com/ncr\"", ")", "elem", "=", "@", "driver.", "find_element", "(", ":", "name,", "'q'", ")", "elem.", "send_keys", "(", "\"LambdaTest.com\"", ")", "elem.", "submit", "(", ")", "puts", "(", "\"Printing", "title", "of", "current", "page", ":\"", "+", "@", "driver.", "title", ")", "end", "def", "teardown", "\"\"", "\"", "Quit", "selenium", "driver", "\"", "\"\"", "@", "driver.", "quit", "end", "end", "Here’s", "how", "you", "can", "execute", "the", "test", "from", "your", "terminal.", "ruby", "google-search-lambdatest.rb", "1", "ruby", "google", "-", "search", "-", "lambdatest.", "rb", "The", "first", "thing", "to", "note", "in", "this", "code", "is", "the", "use", "of", "remote", "webdriver.", "To", "access", "LambdaTest", "grid,", "you", "would", "have", "to", "invoke", "remote", "webdriver", "instead", "of", "local", "webdrivers.", "In", "addition,", "the", "browser", "enthronement", "details", "are", "passed", "on", "through", "desired_capabilities.", "In", "this", "example", "we", "are", "running", "a", "test", "on", "Windows", "10,", "Chrome", "67", "environment.", "You", "can", "test", "your", "own", "choice", "of", "an", "environment", "by", "changing", "the", "parameters", "in", "the", "object.", "You", "can", "leverage", "our", "capabilities", "generator", "tool", "to", "create", "code", "for", "your", "environments.", "LambdaTest", "Capability", "Generator", "Tool" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "You", "asked", "—", "so", "we", "delivered.", "One", "of", "the", "most", "requested", "vouchers", "we’ve", "received", "from", "our", "users", "is", "Amazon.", "Who", "wouldn’t?", "You", "can", "literally", "buy", "anything", "there,", "making", "it", "even", "easier", "to", "live", "on", "cryptocurrencies.", "The", "team", "at", "Bitrefill", "is", "pleased", "to", "announce", "that", "we’ve", "enabled", "Amazon", "US", "vouchers", "for", "purchase", "using", "Bitcoin,", "Litecoin,", "Ethereum,", "Dash,", "and", "Dogecoin!", "Buy", "Amazon", "vouchers", "&", "gift", "cards", "on", "Bitrefill", "here", "»", "Amazon", "gift", "cards", "are", "available", "in", "the", "US", "and", "Germany.", "We’re", "working", "on", "more", "countries,", "so", "stay", "tuned!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "You", "asked", "—", "so", "we", "delivered.", "One", "of", "the", "most", "requested", "vouchers", "we’ve", "received", "from", "our", "users", "is", "Amazon.", "Who", "wouldn’t?", "You", "can", "literally", "buy", "anything", "there,", "making", "it", "even", "easier", "to", "live", "on", "cryptocurrencies.", "The", "team", "at", "Bitrefill", "is", "pleased", "to", "announce", "that", "we’ve", "enabled", "Amazon", "US", "vouchers", "for", "purchase", "using", "Bitcoin,", "Litecoin,", "Ethereum,", "Dash,", "and", "Dogecoin!", "Buy", "Amazon", "vouchers", "&", "gift", "cards", "on", "Bitrefill", "here", "»", "Amazon", "gift", "cards", "are", "available", "in", "the", "US", "and", "Germany.", "We’re", "working", "on", "more", "countries,", "so", "stay", "tuned!" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Theatre", "of", "Blood:", "Entry", "Mode", "Dev", "Blog", "We've", "been", "keen", "to", "keep", "on", "top", "of", "all", "the", "feedback", "you've", "been", "sending", "us", "regarding", "the", "Theatre", "of", "Blood,", "and", "with", "our", "most", "recent", "batch", "of", "changes,", "we're", "really", "happy", "with", "how", "the", "content", "has", "evolved", "into", "the", "rewarding", "challenge", "it", "currently", "is.", "We", "have", "however", "also", "seen", "the", "increasing", "number", "of", "players", "want", "to", "access", "the", "Theatre,", "so", "today", "we'd", "like", "to", "present", "to", "you", "the", "Theatre", "of", "Blood:", "Entry", "Mode.", "As", "with", "all", "other", "poll", "focused", "Dev", "Blogs,", "we", "want", "to", "take", "some", "time", "to", "collate", "your", "feedback.", "The", "poll", "is", "due", "to", "go", "live", "in-game", "this", "Friday,", "6th", "July,", "meaning", "there's", "plenty", "of", "time", "to", "provide", "feedback!", "There", "is", "currently", "no", "ETA", "for", "when", "the", "poll", "will", "be", "going", "live", "in-game", "whilst", "we", "continue", "to", "gather", "feedback.", "Entry", "Mode:", "The", "Specifics", "Entry", "Mode", "is", "aimed", "at", "any", "group", "size", "of", "1-5", "players,", "with", "5", "being", "the", "maximum", "group", "size", "allowed.", "All", "encounters", "within", "Entry", "Mode", "will", "be", "rebalanced", "to", "be", "aimed", "at", "lower", "level", "players", "with", "less", "expensive", "gear.", "We're", "thinking", "somewhere", "around", "100-110", "combat.", "The", "health", "of", "monsters", "found", "within", "will", "scale", "to", "suit", "the", "team", "size.", "This", "would", "work", "for", "all", "team", "sizes", "(including", "solo", "and", "duo).", "Where", "possible,", "the", "same", "encounter", "mechanics", "found", "within", "the", "Theatre", "of", "Blood", "will", "remain", "for", "Entry", "Mode.", "Some", "tweaks", "may", "have", "to", "be", "made", "to", "allow", "for", "solo", "play.", "The", "gravestone", "cost", "will", "be", "reduced", "to", "50k", "rather", "than", "100k.", "The", "only", "unique", "items", "that", "can", "be", "awarded", "for", "completing", "Entry", "Mode", "are", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour.", "The", "chance", "to", "get", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour", "in", "a", "team", "size", "of", "3-5", "players", "would", "be", "roughly", "10", "times", "rarer", "than", "a", "normal", "Theatre", "of", "Blood", "completion.", "The", "chance", "of", "obtaining", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour", "when", "solo", "or", "duo", "would", "be", "reduced", "even", "further", "when", "compared", "to", "3-5", "players.", "Death,", "the", "Supply", "Chest", "\"shops\"", "and", "the", "way", "loot", "(including", "uniques)", "is", "awarded", "will", "follow", "the", "same", "rules", "as", "the", "Theatre", "of", "Blood.", "The", "number", "of", "deaths", "will", "impact", "the", "quantity", "and", "quality", "of", "loot", "you", "receive.", "The", "Supply", "Chest", "\"shops\"", "would", "not", "allow", "for", "players", "to", "effectively", "farm", "high-level", "potions.", "Entry", "Mode", "will", "never", "grant", "a", "chance", "of", "the", "Lil'", "zik", "pet.", "Entry", "Mode", "will", "have", "a", "separate", "killcount", "tracker", "and", "leaderboards.", "The", "killcount", "from", "Entry", "Mode", "will", "not", "count", "towards", "the", "Sinhaza", "Shroud.", "Poll", "Question", "#1Should", "we", "add", "the", "Theatre", "of", "Blood:", "Entry", "Mode", "to", "the", "game?", "Entry", "Mode", "would", "offer", "a", "way", "for", "more", "players", "to", "learn", "and", "enjoy", "a", "similar", "experience", "to", "the", "Theatre", "of", "Blood,", "limited", "to", "group", "sizes", "of", "1-5", "players.", "There", "will", "be", "a", "separate", "leaderboard", "and", "killcount", "tracker", "for", "Entry", "Mode", "and", "completions", "will", "not", "count", "towards", "the", "requirement", "for", "the", "Sinhaza", "Shroud.", "It", "would", "not", "be", "possible", "to", "get", "the", "Lil'", "Zik", "pet", "from", "Entry", "Mode.", "The", "only", "uniques", "available", "would", "be", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour,", "which", "would", "be", "roughly", "10", "times", "rarer", "than", "a", "normal", "Theatre", "of", "Blood", "completion", "in", "team", "sizes", "of", "3-5", "players.", "Solo", "and", "duo", "completions", "would", "have", "the", "rate", "reduced", "even", "further.", "[03/07/18]", "-", "Added", "further", "detail", "to", "clarify", "that", "solo", "and", "duo", "Entry", "Mode", "completions", "would", "have", "a", "lower", "chance", "of", "obtaining", "a", "unique", "compared", "to", "teams", "of", "3-5", "players.", "[03/07/18]", "-", "Added", "further", "detail", "to", "clarify", "that", "the", "Supply", "Chest", "\"shops\"", "would", "not", "allow", "for", "players", "to", "effectively", "farm", "high-level", "potions.When", "we", "first", "announced", "the", "Theatre", "of", "Blood", "at", "RuneFest", "we", "said", "it", "would", "be", "challenging,", "rewarding", "and", "emphasise", "on", "the", "need", "for", "teamwork.", "We've", "seen", "thousands", "of", "you", "complete", "the", "Theatre", "since", "it", "first", "released", "on", "the", "7th", "June", "and", "whilst", "we're", "extremely", "happy", "with", "how", "well", "received", "it", "has", "been,", "one", "of", "the", "largest", "pieces", "of", "feedback", "from", "everything", "we've", "seen", "on", "social", "media,", "your", "feedback", "in", "the", "recent", "surveys", "and", "the", "masses", "of", "you", "that", "watched", "on", "Twitch,", "is", "that", "aside", "from", "the", "small", "but", "impactful", "changes", "we've", "made", "to", "the", "Theatre", "of", "Blood,", "it's", "very", "apparent", "that", "more", "of", "you", "want", "to", "be", "able", "to", "experience", "this", "fantastic", "piece", "of", "content", "the", "team", "have", "worked", "so", "hard", "on.", "We're", "aware", "it", "can", "often", "be", "seen", "that", "these", "updates", "cater", "more", "specifically", "towards", "the", "higher-level", "portion", "of", "our", "community,", "and", "that", "those", "of", "you", "who", "are", "still", "working", "on", "building", "your", "characters", "and", "gathering", "your", "gear", "often", "miss", "out", "on", "exploring", "such", "great", "content.", "Changing", "the", "Theatre", "of", "Blood", "in", "terms", "of", "difficulty", "and", "group", "size", "requirements", "now", "would", "be", "a", "heavy", "hit", "to", "those", "that", "have", "already", "spent", "hundreds", "of", "hours", "and", "thousandsin", "gold", "to", "perfect", "their", "strategies,", "push", "for", "the", "fastest", "completion", "times", "and", "have", "their", "chance", "of", "the", "prestigious", "rewards", "currently", "on", "offer.", "Because", "of", "this,", "we", "don't", "want", "to", "make", "any", "changes", "to", "how", "difficult" ], [ "or", "accessible", "the", "current", "Theatre", "of", "Blood", "is.", "However,", "with", "the", "current", "average", "of", "around", "1,500", "unique", "players", "completing", "the", "Theatre", "per", "day,", "we", "felt", "it", "was", "worth", "exploring", "the", "options", "available", "to", "us", "that", "would", "make", "it", "possible", "for", "more", "of", "you", "to", "enjoy", "this", "content,", "not", "only", "from", "viewing", "it", "and", "seeing", "others", "complete", "it,", "butyourself.", "Theatre", "of", "Blood:", "Entry", "Mode", "is", "not", "intended", "to", "devalue", "the", "time", "and", "money", "spent", "by", "those", "already", "tackling", "the", "Theatre", "of", "Blood", "and", "should", "not", "be", "seen", "as", "a", "replacement", "for", "the", "current", "3", "to", "5-man", "teams", "that", "are", "confidently", "beating", "Verzik", "and", "gaining", "access", "to", "her", "treasure", "room", "in", "record", "timing.", "Our", "aim", "is", "to", "simply", "open", "the", "doors", "to", "those", "of", "you", "that", "may", "not", "have", "maxed", "combat", "or", "the", "ultimate", "gear", "setup,", "but", "still", "want", "to", "experience", "the", "type", "of", "challenge", "this", "content", "offers", "and", "hopefully", "train", "your", "skills,", "so", "when", "the", "time", "is", "right,", "you'll", "be", "able", "to", "take", "on", "the", "full", "challenge", "of", "the", "Theatre", "with", "your", "newly", "developed", "teams.", "Discuss", "this", "update", "on", "our", "official", "forums,", "the", "community-led", "2007Scape", "Reddit,", "or", "the", "community-led", "OSRS", "Discord", "in", "the", "#gameupdate", "channel." ] ]
[ [ "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Theatre", "of", "Blood:", "Entry", "Mode", "Dev", "Blog", "We've", "been", "keen", "to", "keep", "on", "top", "of", "all", "the", "feedback", "you've", "been", "sending", "us", "regarding", "the", "Theatre", "of", "Blood,", "and", "with", "our", "most", "recent", "batch", "of", "changes,", "we're", "really", "happy", "with", "how", "the", "content", "has", "evolved", "into", "the", "rewarding", "challenge", "it", "currently", "is.", "We", "have", "however", "also", "seen", "the", "increasing", "number", "of", "players", "want", "to", "access", "the", "Theatre,", "so", "today", "we'd", "like", "to", "present", "to", "you", "the", "Theatre", "of", "Blood:", "Entry", "Mode.", "As", "with", "all", "other", "poll", "focused", "Dev", "Blogs,", "we", "want", "to", "take", "some", "time", "to", "collate", "your", "feedback.", "The", "poll", "is", "due", "to", "go", "live", "in-game", "this", "Friday,", "6th", "July,", "meaning", "there's", "plenty", "of", "time", "to", "provide", "feedback!", "There", "is", "currently", "no", "ETA", "for", "when", "the", "poll", "will", "be", "going", "live", "in-game", "whilst", "we", "continue", "to", "gather", "feedback.", "Entry", "Mode:", "The", "Specifics", "Entry", "Mode", "is", "aimed", "at", "any", "group", "size", "of", "1-5", "players,", "with", "5", "being", "the", "maximum", "group", "size", "allowed.", "All", "encounters", "within", "Entry", "Mode", "will", "be", "rebalanced", "to", "be", "aimed", "at", "lower", "level", "players", "with", "less", "expensive", "gear.", "We're", "thinking", "somewhere", "around", "100-110", "combat.", "The", "health", "of", "monsters", "found", "within", "will", "scale", "to", "suit", "the", "team", "size.", "This", "would", "work", "for", "all", "team", "sizes", "(including", "solo", "and", "duo).", "Where", "possible,", "the", "same", "encounter", "mechanics", "found", "within", "the", "Theatre", "of", "Blood", "will", "remain", "for", "Entry", "Mode.", "Some", "tweaks", "may", "have", "to", "be", "made", "to", "allow", "for", "solo", "play.", "The", "gravestone", "cost", "will", "be", "reduced", "to", "50k", "rather", "than", "100k.", "The", "only", "unique", "items", "that", "can", "be", "awarded", "for", "completing", "Entry", "Mode", "are", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour.", "The", "chance", "to", "get", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour", "in", "a", "team", "size", "of", "3-5", "players", "would", "be", "roughly", "10", "times", "rarer", "than", "a", "normal", "Theatre", "of", "Blood", "completion.", "The", "chance", "of", "obtaining", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour", "when", "solo", "or", "duo", "would", "be", "reduced", "even", "further", "when", "compared", "to", "3-5", "players.", "Death,", "the", "Supply", "Chest", "\"shops\"", "and", "the", "way", "loot", "(including", "uniques)", "is", "awarded", "will", "follow", "the", "same", "rules", "as", "the", "Theatre", "of", "Blood.", "The", "number", "of", "deaths", "will", "impact", "the", "quantity", "and", "quality", "of", "loot", "you", "receive.", "The", "Supply", "Chest", "\"shops\"", "would", "not", "allow", "for", "players", "to", "effectively", "farm", "high-level", "potions.", "Entry", "Mode", "will", "never", "grant", "a", "chance", "of", "the", "Lil'" ], [ "Entry", "Mode", "will", "have", "a", "separate", "killcount", "tracker", "and", "leaderboards.", "The", "killcount", "from", "Entry", "Mode", "will", "not", "count", "towards", "the", "Sinhaza", "Shroud.", "Poll", "Question", "#1Should", "we", "add", "the", "Theatre", "of", "Blood:", "Entry", "Mode", "to", "the", "game?", "Entry", "Mode", "would", "offer", "a", "way", "for", "more", "players", "to", "learn", "and", "enjoy", "a", "similar", "experience", "to", "the", "Theatre", "of", "Blood,", "limited", "to", "group", "sizes", "of", "1-5", "players.", "There", "will", "be", "a", "separate", "leaderboard", "and", "killcount", "tracker", "for", "Entry", "Mode", "and", "completions", "will", "not", "count", "towards", "the", "requirement", "for", "the", "Sinhaza", "Shroud.", "It", "would", "not", "be", "possible", "to", "get", "the", "Lil'", "Zik", "pet", "from", "Entry", "Mode.", "The", "only", "uniques", "available", "would", "be", "the", "Avernic", "hilt", "and", "the", "Justiciar", "armour,", "which", "would", "be", "roughly", "10", "times", "rarer", "than", "a", "normal", "Theatre", "of", "Blood", "completion", "in", "team", "sizes", "of", "3-5", "players.", "Solo", "and", "duo", "completions", "would", "have", "the", "rate", "reduced", "even", "further.", "[03/07/18]", "-", "Added", "further", "detail", "to", "clarify", "that", "solo", "and", "duo", "Entry", "Mode", "completions", "would", "have", "a", "lower", "chance", "of", "obtaining", "a", "unique", "compared", "to", "teams", "of", "3-5", "players.", "[03/07/18]", "-", "Added", "further", "detail", "to", "clarify", "that", "the", "Supply", "Chest", "\"shops\"", "would", "not", "allow", "for", "players", "to", "effectively", "farm", "high-level", "potions.When", "we", "first", "announced", "the", "Theatre", "of", "Blood", "at", "RuneFest", "we", "said", "it", "would", "be", "challenging,", "rewarding", "and", "emphasise", "on", "the", "need", "for", "teamwork.", "We've", "seen", "thousands", "of", "you", "complete", "the", "Theatre", "since", "it", "first", "released", "on", "the", "7th", "June", "and", "whilst", "we're", "extremely", "happy", "with", "how", "well", "received", "it", "has", "been,", "one", "of", "the", "largest", "pieces", "of", "feedback", "from", "everything", "we've", "seen", "on", "social", "media,", "your", "feedback", "in", "the", "recent", "surveys", "and", "the", "masses", "of", "you", "that", "watched", "on", "Twitch,", "is", "that", "aside", "from", "the", "small", "but", "impactful", "changes", "we've", "made", "to", "the", "Theatre", "of", "Blood,", "it's", "very", "apparent", "that", "more", "of", "you", "want", "to", "be", "able", "to", "experience", "this", "fantastic", "piece", "of", "content", "the", "team", "have", "worked", "so", "hard", "on.", "We're", "aware", "it", "can", "often", "be", "seen", "that", "these", "updates", "cater", "more", "specifically", "towards", "the", "higher-level", "portion", "of", "our", "community,", "and", "that", "those", "of", "you", "who", "are", "still", "working", "on", "building", "your", "characters", "and", "gathering", "your", "gear", "often", "miss", "out", "on", "exploring", "such", "great", "content.", "Changing", "the", "Theatre", "of", "Blood", "in", "terms", "of", "difficulty", "and", "group", "size", "requirements", "now", "would", "be", "a", "heavy", "hit", "to", "those", "that", "have", "already", "spent", "hundreds", "of", "hours", "and", "thousandsin", "gold", "to", "perfect", "their", "strategies,", "push", "for", "the", "fastest", "completion", "times", "and", "have", "their", "chance", "of", "the", "prestigious", "rewards", "currently", "on", "offer.", "Because", "of", "this,", "we", "don't", "want", "to", "make", "any", "changes", "to", "how", "difficult" ] ], [ [ "or", "accessible", "the", "current", "Theatre", "of", "Blood", "is.", "However,", "with", "the", "current", "average", "of", "around", "1,500", "unique", "players", "completing", "the", "Theatre", "per", "day,", "we", "felt", "it", "was", "worth", "exploring", "the", "options", "available", "to", "us", "that", "would", "make", "it", "possible", "for", "more", "of", "you", "to", "enjoy", "this", "content,", "not", "only", "from", "viewing", "it", "and", "seeing", "others", "complete", "it,", "butyourself.", "Theatre", "of", "Blood:", "Entry", "Mode", "is", "not", "intended", "to", "devalue", "the", "time", "and", "money", "spent", "by", "those", "already", "tackling", "the", "Theatre", "of", "Blood", "and", "should", "not", "be", "seen", "as", "a", "replacement", "for", "the", "current", "3", "to", "5-man", "teams", "that", "are", "confidently", "beating", "Verzik", "and", "gaining", "access", "to", "her", "treasure", "room", "in", "record", "timing.", "Our", "aim", "is", "to", "simply", "open", "the", "doors", "to", "those", "of", "you", "that", "may", "not", "have", "maxed", "combat", "or", "the", "ultimate", "gear", "setup,", "but", "still", "want", "to", "experience", "the", "type", "of", "challenge", "this", "content", "offers", "and", "hopefully", "train", "your", "skills,", "so", "when", "the", "time", "is", "right,", "you'll", "be", "able", "to", "take", "on", "the", "full", "challenge", "of", "the", "Theatre", "with", "your", "newly", "developed", "teams.", "Discuss", "this", "update", "on", "our", "official", "forums,", "the", "community-led", "2007Scape", "Reddit,", "or", "the", "community-led", "OSRS", "Discord", "in", "the", "#gameupdate", "channel." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Has", "life", "changing", "epiphany", "while", "outside", "taking", "a", "piss.", "Noticed", "the", "stoner", "cliche", "of", "the", "situation", "Got", "distracted", "thinking", "about", "making", "a", "meme", "about", "it,", "forgot", "epiphany.", "3,458", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Has", "life", "changing", "epiphany", "while", "outside", "taking", "a", "piss.", "Noticed", "the", "stoner", "cliche", "of", "the", "situation", "Got", "distracted", "thinking", "about", "making", "a", "meme", "about", "it,", "forgot", "epiphany.", "3,458", "shares" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Los", "hechos", "sucedieron", "en", "la", "Autopista", "México-Pachuca.", "México.-", "Un", "hombre", "resultó", "herido", "este", "jueves", "durante", "un", "asalto", "a", "una", "unidad", "de", "transporte", "público", "en", "los", "límites", "del", "municipio", "de", "Ecatepec", "con", "Tecámac,", "tal", "como", "se", "puede", "ver", "en", "una", "grabación", "que", "ha", "causado", "indignación", "en", "redes", "debido", "a", "la", "crueldad", "de", "los", "hechos.", "Puedes", "leer:", "Ecatepec", "y", "Sedena", "ofrecen", "hasta", "17", "mil", "pesos", "por", "pistola", "en", "programa", "de", "desarme", "voluntario", "El", "video", "muestra", "a", "dos", "sujetos", "asaltando", "la", "vagoneta", "que", "circulaba", "sobre", "la", "Autopista", "México-Pachuca.", "En", "un", "principio", "se", "ubicó", "el", "lugar", "del", "ataque", "a", "la", "altura", "de", "la", "zona", "conocida", "como", "Laboratorios,", "sin", "embargo", "fuentes", "del", "municipio", "de", "Ecatepec", "indicaron", "que", "ocurrió", "en", "la", "colonia", "Ojo", "de", "Agua", "del", "municipio", "de", "Tecámac.", "Una", "vez", "que", "habían", "concluido", "el", "atraco,", "muestra", "el", "video,", "los", "sujetos", "abandonan", "la", "unidad", "pero", "uno", "de", "los", "pasajeros", "alcanza", "a", "expresar", "con", "coraje:", "Puedes", "leer:", "Ataque", "con", "hacha", "a", "automovilista", "en", "Ecatepec", "por", "circular", "en", "sentido", "contrario", "queda", "registrado", "en", "video", "Ante", "esto,", "uno", "de", "los", "asaltantes", "voltea", "y", "dispara", "desde", "el", "exterior", "de", "la", "vagoneta", "hiriendo", "al", "pasajero", "y", "causando", "pánico", "entre", "los", "demás,", "quienes", "pidieron", "al", "chofer", "detener", "la", "marcha.", "Recomendamos:", "Alumno", "de", "primaria", "en", "Ecatepec", "lleva", "pistola", "a", "escuela", "y", "apunta", "a", "compañeros", "De", "acuerdo", "con", "el", "reportero", "Isidro", "Corro,", "quien", "compartió", "la", "grabación", "en", "su", "cuenta", "de", "Twitter,", "el", "herido", "fue", "trasladado", "a", "un", "hospital", "para", "recibir", "atención", "médica.", "⚠️Asaltante", "se", "molesta", "porque", "pasajero", "le", "mienta", "su", "madre", "cuando", "se", "baja", "del", "transporte", "público", "y", "dispara", "a", "un", "usuario.⚠️", "Ocurrió", "esta", "jueves", "sobre", "la", "autopista", "México", "Pachuca", "a", "la", "altura", "de", "la", "zona", "conocida", "como", "laboratorios.", "‼️El", "herido", "fue", "llevado", "a", "un", "hospital.", "#Edomex.‼️", "pic.twitter.com/fNoIZpewRL", "—", "Isidro", "Corro", "(@isidrocorro)", "—", "Isidro", "Corro", "(@isidrocorro)", "June", "6,", "2019", "Hasta", "el", "momento,", "se", "ignora", "su", "estado", "de", "salud.", "AVISO:", "Esta", "publicación", "fue", "editada", "de", "su", "versión", "original", "a", "las", "19", "horas", "por", "la", "ubicación", "del", "lugar", "del", "ataque." ] ]
[ [ "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "en", "en", "en", "en", "en", "it", "pt", "it", "it", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es" ] ]
[ [ [ "Los", "hechos", "sucedieron", "en", "la", "Autopista", "México-Pachuca.", "México.-", "Un", "hombre", "resultó", "herido", "este", "jueves", "durante", "un", "asalto", "a", "una", "unidad", "de", "transporte", "público", "en", "los", "límites", "del", "municipio", "de", "Ecatepec", "con", "Tecámac,", "tal", "como", "se", "puede", "ver", "en", "una", "grabación", "que", "ha", "causado", "indignación", "en", "redes", "debido", "a", "la", "crueldad", "de", "los", "hechos.", "Puedes", "leer:", "Ecatepec", "y", "Sedena", "ofrecen", "hasta", "17", "mil", "pesos", "por", "pistola", "en", "programa", "de", "desarme", "voluntario", "El", "video", "muestra", "a", "dos", "sujetos", "asaltando", "la", "vagoneta", "que", "circulaba", "sobre", "la", "Autopista", "México-Pachuca.", "En", "un", "principio", "se", "ubicó", "el", "lugar", "del", "ataque", "a", "la", "altura", "de", "la", "zona", "conocida", "como", "Laboratorios,", "sin", "embargo", "fuentes", "del", "municipio", "de", "Ecatepec", "indicaron", "que", "ocurrió", "en", "la", "colonia", "Ojo", "de", "Agua", "del", "municipio", "de", "Tecámac.", "Una", "vez", "que", "habían", "concluido", "el", "atraco,", "muestra", "el", "video,", "los", "sujetos", "abandonan", "la", "unidad", "pero", "uno", "de", "los", "pasajeros", "alcanza", "a", "expresar", "con", "coraje:", "Puedes", "leer:", "Ataque", "con", "hacha", "a", "automovilista", "en", "Ecatepec", "por", "circular", "en", "sentido", "contrario", "queda", "registrado", "en", "video", "Ante", "esto,", "uno", "de", "los", "asaltantes", "voltea", "y", "dispara", "desde", "el", "exterior", "de", "la", "vagoneta", "hiriendo", "al", "pasajero", "y", "causando", "pánico", "entre", "los", "demás,", "quienes", "pidieron", "al", "chofer", "detener", "la", "marcha.", "Recomendamos:", "Alumno", "de", "primaria", "en", "Ecatepec", "lleva", "pistola", "a", "escuela", "y", "apunta", "a", "compañeros", "De", "acuerdo", "con", "el", "reportero", "Isidro", "Corro,", "quien", "compartió", "la", "grabación", "en", "su", "cuenta", "de", "Twitter,", "el", "herido", "fue", "trasladado", "a", "un", "hospital", "para", "recibir", "atención", "médica.", "⚠️Asaltante", "se", "molesta", "porque", "pasajero", "le", "mienta", "su", "madre", "cuando", "se", "baja", "del", "transporte", "público", "y", "dispara", "a", "un", "usuario.⚠️", "Ocurrió", "esta", "jueves", "sobre", "la", "autopista", "México", "Pachuca", "a", "la", "altura", "de", "la", "zona", "conocida", "como", "laboratorios.", "‼️El", "herido", "fue", "llevado", "a", "un", "hospital.", "#Edomex.‼️", "pic.twitter.com/fNoIZpewRL", "—", "Isidro", "Corro", "(@isidrocorro)", "—", "Isidro", "Corro", "(@isidrocorro)", "June", "6,", "2019", "Hasta", "el", "momento,", "se", "ignora", "su", "estado", "de", "salud.", "AVISO:", "Esta", "publicación", "fue", "editada", "de", "su", "versión", "original", "a", "las", "19", "horas", "por", "la", "ubicación", "del", "lugar", "del", "ataque." ] ] ]
[ [ "es" ] ]
[ "mono" ]
[ [ "While", "it’s", "to", "be", "expected", "that", "average", "sites", "will", "be", "hit", "by", "hackers", "from", "time", "to", "time,", "the", "thought", "of", "Steam", "going", "down", "seemed", "practically", "inconceivable.", "After", "all,", "it’s", "the", "world’s", "largest", "digital", "storefront,", "a", "social", "hub", "and", "online", "game", "platform", "all", "in", "one.", "But", "after", "years", "of", "running", "without", "much", "in", "the", "ways", "of", "unplanned", "downtime,", "Steam", "is", "currently", "inaccessible", "and", "all", "signs", "point", "to", "a", "DDoS", "attack.", "A", "DDoS,", "short", "for", "“denial-of-service,”", "attack", "is", "not", "hack", "but", "instead", "an", "attempt", "to", "bring", "a", "website", "down", "by", "overloading", "it", "with", "communication", "requests.", "EA’s", "competing", "service", "Origin", "experienced", "one", "of", "these", "outages", "earlier", "in", "the", "day.", "While", "we", "can’t", "confirm", "at", "this", "point", "that", "a", "DDoS", "attack", "has", "actually", "taken", "place,", "the", "site", "has", "been", "either", "down", "—", "or", "intermittently", "working", "—", "for", "the", "past", "half", "our", "or", "so", "and", "a", "group", "has", "taken", "responsibility", "for", "the", "attack.", "We’ll", "follow", "the", "story", "and", "keep", "you", "updated.", "In", "the", "meantime,", "head", "over", "here", "to", "check", "the", "current", "status", "of", "Steam", "services." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "While", "it’s", "to", "be", "expected", "that", "average", "sites", "will", "be", "hit", "by", "hackers", "from", "time", "to", "time,", "the", "thought", "of", "Steam", "going", "down", "seemed", "practically", "inconceivable.", "After", "all,", "it’s", "the", "world’s", "largest", "digital", "storefront,", "a", "social", "hub", "and", "online", "game", "platform", "all", "in", "one.", "But", "after", "years", "of", "running", "without", "much", "in", "the", "ways", "of", "unplanned", "downtime,", "Steam", "is", "currently", "inaccessible", "and", "all", "signs", "point", "to", "a", "DDoS", "attack.", "A", "DDoS,", "short", "for", "“denial-of-service,”", "attack", "is", "not", "hack", "but", "instead", "an", "attempt", "to", "bring", "a", "website", "down", "by", "overloading", "it", "with", "communication", "requests.", "EA’s", "competing", "service", "Origin", "experienced", "one", "of", "these", "outages", "earlier", "in", "the", "day.", "While", "we", "can’t", "confirm", "at", "this", "point", "that", "a", "DDoS", "attack", "has", "actually", "taken", "place,", "the", "site", "has", "been", "either", "down", "—", "or", "intermittently", "working", "—", "for", "the", "past", "half", "our", "or", "so", "and", "a", "group", "has", "taken", "responsibility", "for", "the", "attack.", "We’ll", "follow", "the", "story", "and", "keep", "you", "updated.", "In", "the", "meantime,", "head", "over", "here", "to", "check", "the", "current", "status", "of", "Steam", "services." ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Dissolved", "Oxygen", "Concentration", "(DOC)", "is", "the", "term", "given", "to", "describe", "the", "amount", "of", "oxygen", "that", "is", "dissolved", "in", "pond", "water.", "It", "is", "measured", "in", "terms", "of", "how", "much", "oxygen", "(by", "weight", "-", "mg)", "is", "dissolved", "in", "every", "litre", "of", "water.", "There", "are", "many", "factors", "that", "will", "affect", "DOC", "in", "a", "koi", "pond,", "some", "of", "which", "we", "can", "control,", "others", "we", "cannot,", "but", "can", "respond", "in", "a", "number", "of", "ways", "to", "guard", "against", "problems.", "Of", "course,", "dissolved", "oxygen", "is", "important", "to", "all", "life", "in", "a", "koi", "pond,", "not", "simply", "the", "fish,", "and", "they", "all", "have", "a", "demand", "on", "the", "finite", "supply", "of", "oxygen", "dissolved", "in", "the", "pond", "water.", "The", "number", "of", "oxygen", "consumers", "in", "a", "pond", "will", "determine", "whether", "the", "dissolved", "oxygen", "concentrations", "in", "the", "pond", "are", "likely", "to", "be", "a", "problem", "or", "not,", "with", "a", "larger", "density", "putting", "a", "greater", "strain", "on", "the", "resource.", "Oxygen", "Consumers", "in", "a", "Koi", "Pond", "1)", "Koi", "In", "relation", "to", "the", "activities", "of", "bacteria", "and", "other", "microscopic", "pond", "organisms,", "the", "oxygen", "demand", "by", "koi", "is", "not", "the", "greatest", "(but", "this", "will", "vary", "with", "stocking", "density).", "Compared", "to", "many", "other", "fish", "species,", "koi", "are", "relatively", "tolerant", "of", "low", "dissolved", "oxygen", "concentrations", "(which", "is", "understandable,", "being", "a", "fish", "from", "slower", "moving", "warm", "waters).", "The", "range", "of", "DOC", "in", "a", "pond", "will", "run", "from", "a", "minimum", "(0mg/l)", "to", "a", "maximum", "(about", "15mg/l),", "where", "even", "the", "supply", "of", "additional", "aeration", "would", "not", "change", "the", "DOC.", "A", "trout", "requires", "a", "high", "DOC", "of", "about", "12mg/l", "while", "the", "more", "tolerant", "koi", "can", "only", "require", "a", "much", "lower", "6", "mg", "per", "litre.", "Even", "so,", "below", "this,", "for", "short", "periods", "of", "time", "they", "can", "gasp", "at", "the", "surface", "to", "gain", "their", "required", "oxygen.", "Koi", "are", "equipped", "with", "gills,", "which", "have", "a", "very", "fine", "and", "delicate", "structure.", "Gills", "are", "used", "to", "absorb", "the", "oxygen", "that", "passes", "through", "them", "with", "some", "oxygen", "being", "dissolved", "in", "the", "water.", "They", "are", "very", "efficient", "at", "removing", "oxygen,", "absorbing", "80%", "of", "the", "oxygen", "that", "speeds", "by", "their", "gills", "in", "the", "water", "(compare", "that", "to", "about", "20%", "efficiency", "of", "our", "lungs).", "Furthermore,", "koi", "are", "able", "to", "pack", "the", "oxygen", "from", "100", "ml", "of", "water", "into", "4", "ml", "of", "blood.", "Quite", "a", "feat", "of", "bioengineering!", "2)", "Bacteria/Fungi", "The", "majority", "of", "bacteria", "in", "a", "pond", "are", "aerobic", "(requiring", "oxygen)", "mostly", "found", "in", "abundance", "in", "the", "filter.", "The", "activity", "(and", "oxygen", "demand)", "of", "a", "bacterial", "population", "will", "vary,", "depending", "on", "the", "water", "temperature", "and", "the", "amount", "of", "food", "that", "is", "present", "for", "them", "to", "break", "down", "in", "the", "water.", "The", "bacteria", "involved", "in", "breaking", "down", "ammonia", "into", "nitrites", "and", "then", "nitrates", "require", "oxygen.", "The", "greater", "the", "supply", "of", "ammonia", "and", "therefore", "nitrites,", "the", "greater", "the", "bacterial", "activity", "and", "oxygen", "demand.", "A", "further", "group", "of", "bacteria,", "known", "as", "heterotrophic", "bacteria,", "feed", "on", "organic", "matter,", "(both", "soluble", "and", "solid),", "that", "is", "present", "in", "the", "pond.", "As", "solids", "gather", "in", "a", "settlement", "chamber", "or", "excess", "food", "is", "allowed", "to", "float", "uneaten,", "the", "oxygen", "demand", "of", "these", "heterotrophic", "bacteria", "will", "rise", "as", "they", "gorge", "themselves", "on", "a", "banquet", "of", "food", "and", "fish", "waste.", "3)", "Invertebrates", "The", "more", "mature", "a", "filter", "becomes,", "the", "greater", "the", "diversity", "of", "the", "invertebrate", "life", "that", "will", "colonize.", "A", "range", "of", "hungry", "critters", "from", "the", "virtually", "microscopic", "to", "the", "easily", "visible", "will", "all", "demand", "oxygen", "as", "they", "break", "down", "organic", "matter.", "Again,", "the", "more", "food", "there", "is", "to", "break", "down,", "the", "greater", "the", "demand", "on", "the", "pond's", "oxygen", "reserves.", "4)", "Plants", "Plants,", "both", "microscopic", "algae", "and", "larger", "plants,", "are", "oxygen", "consumers,", "day", "and", "night.", "Plants,", "like", "fish", "and", "all", "the", "other", "pond", "life,", "respire", "24", "hours", "a", "day,", "using", "up", "oxygen.", "Fortunately,", "the", "plants,", "during", "the", "day,", "also", "add", "oxygen", "to", "the", "pond's", "oxygen", "budget", "in", "excess", "of", "what", "they", "require", "in", "the", "day.", "Oxygen", "Budget", "However,", "as", "most", "koi", "ponds", "are", "sparsely", "planted,", "particularly", "with", "oxygenating", "plants,", "then", "there", "is", "likely", "to", "be", "little", "oxygen", "added", "courtesy", "of", "the", "plant", "life.", "Furthermore,", "as", "fish", "stocking", "and", "feeding", "rates", "are", "in", "excess", "of", "what", "mother", "nature", "would", "decree,", "there", "is", "likely", "to", "be", "insufficient", "oxygen", "entering", "the", "pond", "passively", "by", "diffusion", "from", "the", "atmosphere.", "This", "can", "soon", "lead", "to", "an", "oxygen", "debt,", "where", "the", "demand", "and", "consumption", "of", "oxygen", "is", "in", "excess", "of", "the", "rate", "at", "which", "it", "is", "being", "added.", "Factors", "that", "can", "cause", "the", "DOC", "to", "drop:", "Biological", "Factors", "The", "demands", "on", "the", "oxygen", "dissolved", "in", "the", "pond", "can", "be", "extreme.", "If", "feeding", "rates", "are", "high", "and", "fish", "are", "at", "their", "most", "active,", "then", "koi", "will", "be", "consuming", "oxygen", "at", "a", "high", "rate,", "as", "will", "the", "populations", "of", "bacteria", "and", "invertebrates", "breaking", "down", "the", "ammonia", "and", "undigested", "organic", "matter", "excreted", "by", "koi.", "Plants", "in", "the", "daytime", "are", "natural", "oxygen", "producers,", "exceeding", "their", "own", "oxygen", "demand.", "At", "night,", "however,", "they", "still", "use", "oxygen", "but", "are", "no", "longer", "producers.", "This", "can", "lead", "to", "DOC", "dropping", "at", "night,", "especially", "if", "your", "pond", "is" ], [ "suffering", "from", "an", "algal", "problem.", "If", "algaecides", "are", "used,", "which", "can", "cause", "algae", "to", "die", "off", "this", "can", "also", "present", "a", "problem", "as", "it", "attracts", "considerable", "bacterial", "activity", "all", "of", "which", "consume", "DO.", "Climatic", "Factors", "Temperature", "has", "a", "twofold", "effect", "on", "DOC.", "Firstly,", "as", "temperature", "increases", "the", "ability", "of", "water", "to", "hold", "dissolved", "oxygen", "decreases.", "Compounding", "this", "phenomenon", "is", "the", "effect", "that", "temperature", "has", "on", "the", "metabolism", "and", "oxygen", "demands", "of", "all", "aquatic", "life", "in", "a", "pond.", "As", "water", "temperatures", "increase,", "koi", "will", "consume", "more", "food,", "excrete", "more", "ammonia,", "which", "attracts", "more", "bacterial", "action", "in", "the", "filter.", "So", "just", "when", "a", "pond", "can", "ill", "afford", "too", "many", "demands", "on", "its", "oxygen,", "the", "oxygen", "requirements", "within", "a", "pond,", "including", "koi,", "reach", "their", "highest", "levels", "of", "the", "year.", "It", "is", "essential", "to", "step", "in", "and", "add", "more", "oxygen.", "Chemical", "Factors", "Pond", "treatments,", "both", "directly", "and", "indirectly,", "will", "cause", "oxygen", "to", "become", "limited", "in", "a", "pond.", "Any", "solute", "(dissolved", "substance", "added", "to", "a", "pond)", "will", "limit", "a", "pond's", "ability", "to", "hold", "as", "much", "oxygen", "as", "was", "possible", "prior", "to", "the", "addition", "of", "a", "solute.", "So", "when", "adding", "any", "treatments,", "additional", "aeration", "is", "always", "recommended.", "Indirectly,", "many", "treatments", "can", "lead", "to", "an", "increase", "in", "organic", "matter", "that", "will", "be", "broken", "down.", "For", "example,", "algaecides", "may", "lead", "to", "dead", "algae", "settling", "out", "in", "the", "filter,", "or", "other", "treatments", "can", "kill", "off", "bacteria,", "or", "lead", "to", "an", "increase", "in", "mucus", "production.", "All", "of", "these", "will", "eventually", "be", "broken", "down", "by", "oxygen-hungry", "bacteria.", "Affects", "of", "low", "DOC", "on", "fish", "Low", "DOC", "has", "very", "obvious", "affects", "on", "koi.", "If", "there", "is", "insufficient", "oxygen", "dissolved", "in", "the", "pond", "water,", "koi", "will", "respond", "in", "the", "short", "term,", "by", "becoming", "lethargic,", "swimming", "slower", "than", "normal,", "and", "perhaps", "hanging", "towards", "the", "surface.", "If", "the", "condition", "persists", "or", "even", "deteriorates,", "koi", "will", "gather", "at", "water", "inlets", "or", "below", "a", "water", "fall", "and", "even", "start", "gasping", "air", "from", "the", "surface.", "By", "this", "stage", "they", "will", "already", "have", "become", "stressed,", "making", "them", "very", "susceptible", "to", "disease.", "Whenever", "I", "have", "taken", "a", "mucus", "scrape", "from", "a", "gasping", "fish,", "I", "have", "found", "an", "abnormally", "high", "density", "of", "protozoan", "parasites,", "busy", "capitalizing", "from", "the", "koi's", "momentary", "lapse", "of", "defense.", "A", "low", "DOC", "is", "also", "likely", "to", "affect", "koi", "health", "indirectly,", "by", "adversely", "affecting", "the", "biological", "filter.", "The", "functioning", "of", "bacteria", "that", "are", "responsible", "for", "the", "breakdown", "of", "toxic", "waste", "is", "directly", "proportional", "to", "the", "dissolved", "oxygen", "concentration.", "Low", "DOC", "will", "lead", "to", "poor", "filter", "performance", "and", "a", "peak", "in", "ammonia/nitrite", "may", "well", "lag", "behind", "such", "an", "incident.", "Detecting", "and", "Measuring", "More", "Precisely", "Immediate", "Action", "A", "DOC", "deficit", "is", "only", "likely", "to", "occur", "at", "warmer", "temperatures,", "and", "a", "change", "in", "koi", "behavior", "will", "be", "the", "first", "sign", "of", "a", "problem.", "A", "more", "precise", "method", "of", "quantifying", "the", "problem", "(or", "the", "margin", "of", "safety", "on", "a", "hot", "day)", "is", "with", "a", "digital", "DO", "meter.", "In", "an", "instant,", "it", "will", "show", "the", "DOC", "and", "more", "advanced", "units", "will", "indicate", "the", "degree", "of", "saturation", "by", "simultaneously", "measuring", "the", "water", "temperature.", "Even", "more", "advanced", "is", "a", "permanent", "DO", "monitoring", "system", "which", "will", "sound", "an", "alarm", "should", "DOC", "levels", "drop", "dangerously", "low.", "Such", "units", "are", "common", "place", "in", "intensive", "aquaculture", "and", "can", "also", "be", "used", "to", "detect", "either", "a", "pump", "or", "air", "pump", "failure", "due", "to", "the", "associated", "drop", "in", "DO.", "An", "acute", "low", "DO", "problem", "can", "occur", "through", "equipment", "failure,", "through", "unforeseen", "circumstances,", "or", "overlooking", "the", "likely", "effects", "of", "a", "pond", "treatment.", "In", "either", "case,", "once", "low", "DOC", "is", "detected,", "remedial", "action", "should", "be", "swift.", "l)", "Agitate", "the", "water's", "surface", "short", "term", "by", "pouring", "buckets", "of", "pond", "water", "back", "into", "the", "pond.", "This", "can", "alleviate", "a", "short", "term", "problem", "while", "you", "think", "of", "a", "more", "permanent", "solution.", "2)", "Spray", "a", "hose", "into", "and", "across", "the", "pond,", "simulating", "rain.", "This", "will", "cause", "DOC", "to", "rise", "as", "an", "emergency", "measure,", "and", "the", "cooler", "tapwater", "will", "allow", "pond", "water", "to", "hold", "more", "oxygen.", "Prevention", "Preventing", "a", "low", "DOC", "is", "far", "better", "than", "responding", "to", "a", "problem,", "and", "there", "are", "many", "aeration", "strategies", "that", "will", "solve", "the", "problem:", "1)", "Air", "Pump", "and", "Diffuser.", "Air", "is", "the", "most", "effective", "when", "it", "is", "pumped", "to", "the", "bottom", "of", "a", "pond", "or", "filter", "chamber", "and", "dispersed", "into", "as", "fine", "bubbles", "as", "possible.", "The", "deeper", "a", "pond", "is,", "the", "greater", "the", "head", "of", "pressure", "an", "air", "pump", "has", "to", "displace", "before", "managing", "to", "deliver", "air", "to", "a", "diffuser.", "Hi-blow", "pumps", "are", "the", "koi", "keeper's", "standard,", "delivering", "good", "volumes", "of", "air", "under", "pressures", "capable", "of", "reaching", "depths", "of", "8'.", "Recognizing", "that", "both", "fish", "and", "filters", "are", "oxygen", "consumers,", "aeration", "should", "be", "added", "to", "both", "the", "pond", "and", "biofilter", "chamber.", "Avoid", "aerating", "settlement", "chambers", "as", "the", "mixing", "action", "created", "by", "the", "airstones", "will", "interfere", "with", "the", "settlement", "action.", "The", "golf", "ball", "type", "of", "air", "diffuser", "is", "very", "easy", "to", "install", "and", "cost", "effective.", "Smaller", "bubbles", "can", "be", "achieved", "using", "different", "diffusers,", "such", "as", "leaky", "pipe,", "micro" ], [ "-bubblers", "and", "air", "domes,", "the", "latter", "converting", "a", "bottom", "drain", "into", "a", "diffuser", "where", "the", "airline", "can", "be", "trailed,", "out", "of", "sight,", "up", "the", "water", "pipe", "and", "into", "the", "filter.", "2)", "Injection.", "Venturis", "inject", "air", "into", "a", "stream", "of", "water", "as", "it", "returns", "under", "pressure", "from", "the", "pump.", "This", "is", "useful", "at", "creating", "a", "mixing", "effect", "in", "the", "surface", "layers", "of", "the", "pond", "water,", "but", "not", "regarded", "as", "effective", "as", "an", "air", "pump", "and", "diffuser", "system.", "3)", "Waterfalls", "These", "mix", "air", "and", "water", "as", "it", "cascades", "down", "the", "waterfall", "and", "enters", "the", "surface.", "In", "similar", "fashion", "to", "the", "venturi,", "a", "waterfall's", "beneficial", "effects", "are", "limited", "to", "the", "upper", "layers", "of", "pond", "water.", "Dos", "and", "Don'ts", "to", "Avoid", "a", "Low", "DOC", "Do:", "1)Try", "to", "aerate", "a", "pond", "as", "a", "matter", "of", "course,", "endeavoring", "to", "aerate", "down", "to", "the", "pond", "bottom.", "2)Add", "additional", "aeration", "to", "the", "biofilter", "chambers,", "it", "will", "enhance", "bacterial", "colonization.", "3)", "Clean", "out", "settlement", "chambers", "regularly.", "Even", "when", "organic", "matter", "is", "removed", "from", "the", "pond,", "it", "still", "attracts", "oxygen", "demanding", "bacteria", "in", "the", "filter.", "4)", "Add", "additional", "aeration", "during", "any", "pond", "treatment", "or", "medication.", "Don't:", "1)", "Assume", "that", "if", "your", "fish", "have", "survived", "the", "hot", "day", "without", "additional", "aeration,", "they", "will", "survive", "the", "night.", "Night", "time", "is", "when", "DOC", "can", "really", "begin", "to", "drop,", "so", "continue", "to", "aerate.", "2)", "Continue", "to", "aerate", "below", "12°C", "(54°F).", "Allow", "fish", "to", "settle", "in", "warmer", "deeper", "water.", "Aerating", "will", "simply", "mix", "up", "all", "layers", "of", "the", "water,", "losing", "the", "benefit", "of", "having", "such", "a", "deep", "pond.", "3)", "Over", "stock.", "This", "will", "lead", "to", "a", "doubling", "of", "demand", "on", "oxygen", "from", "the", "koi", "and", "the", "bacteria", "breaking", "down", "their", "waste.", "By", "Ben", "Helm", "-", "http://www.watergardenersbible.co.uk/", "About", "the", "Author", "Ben", "Helm", "is", "a", "qualified", "marine", "biologist,", "and", "since", "he", "was", "a", "teenager", "was", "fascinated", "by", "the", "aquatic", "world.", "His", "passion", "led", "him", "to", "work", "at", "the", "local", "aquatic", "store", "on", "an", "unpaid", "voluntary", "basis,", "eventually", "becoming", "the", "assistant", "manager.", "Later,", "he", "farmed", "koi", "for", "a", "living", "on", "an", "innovative", "koi", "farm", "in", "the", "UK.", "Ben", "was", "then", "appointed", "head", "of", "a", "brand", "new", "fish", "farming", "and", "aquatics", "department", "at", "Brooksby", "College,", "teaching", "and", "training", "students", "to", "make", "a", "living", "in", "the", "commercial", "aquatic", "world.", "Ben", "was", "marketing", "and", "product", "manager", "with", "Nishikoi", "for", "six", "years", "developing", "their", "range", "of", "market-leading", "pond", "and", "koi", "foods", "and", "water", "treatments.", "As", "head", "of", "the", "Nishikoi", "lnfoCentre,", "he", "gave", "many", "pond", "and", "koi", "talks", "and", "presentations", "in", "UK,", "Europe", "and", "USA", "-", "which", "also", "led", "to", "some", "BBC", "TV", "and", "radio", "work.", "Over", "his", "career,", "Ben", "has", "written", "and", "had", "published", "nearly", "300", "pond", "and", "koi", "articles", "in", "the", "specialist", "aquatic", "publications", "around", "the", "world,", "with", "many", "articles", "being", "translated", "into", "Italian", "and", "Dutch.", "Ben", "still", "works", "in", "animal", "nutrition,", "for", "a", "global", "pet", "nutrition", "business", "-", "Premier", "Pet", "Nutrition.", "More", "recently,", "Ben", "has", "written", "a", "top-selling", "pond", "book", "-", "The", "Water", "Gardener's", "Bible", "(Rodale)", "for", "which", "Kelly", "Billing", "wrote", "the", "chapter", "on", "pond", "plants", "(which", "has", "now", "also", "been", "translated", "into", "English", "and", "French", "editions).", "Ben", "Helm's", "website", "dedicated", "to", "pond", "and", "koi", "keeping", "advice", "and", "information", "shares", "its", "name", "with", "his", "book:", "http:/", "/www.watergardenersbible.co.uk", "Article", "Source:", "https://www.pondtrademag.com/oxygen-in-ponds/" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Dissolved", "Oxygen", "Concentration", "(DOC)", "is", "the", "term", "given", "to", "describe", "the", "amount", "of", "oxygen", "that", "is", "dissolved", "in", "pond", "water.", "It", "is", "measured", "in", "terms", "of", "how", "much", "oxygen", "(by", "weight", "-", "mg)", "is", "dissolved", "in", "every", "litre", "of", "water.", "There", "are", "many", "factors", "that", "will", "affect", "DOC", "in", "a", "koi", "pond,", "some", "of", "which", "we", "can", "control,", "others", "we", "cannot,", "but", "can", "respond", "in", "a", "number", "of", "ways", "to", "guard", "against", "problems.", "Of", "course,", "dissolved", "oxygen", "is", "important", "to", "all", "life", "in", "a", "koi", "pond,", "not", "simply", "the", "fish,", "and", "they", "all", "have", "a", "demand", "on", "the", "finite", "supply", "of", "oxygen", "dissolved", "in", "the", "pond", "water.", "The", "number", "of", "oxygen", "consumers", "in", "a", "pond", "will", "determine", "whether", "the", "dissolved", "oxygen", "concentrations", "in", "the", "pond", "are", "likely", "to", "be", "a", "problem", "or", "not,", "with", "a", "larger", "density", "putting", "a", "greater", "strain", "on", "the", "resource.", "Oxygen", "Consumers", "in", "a", "Koi", "Pond", "1)", "Koi", "In", "relation", "to", "the", "activities", "of", "bacteria", "and", "other", "microscopic", "pond", "organisms,", "the", "oxygen", "demand", "by", "koi", "is", "not", "the", "greatest", "(but", "this", "will", "vary", "with", "stocking", "density).", "Compared", "to", "many", "other", "fish", "species,", "koi", "are", "relatively", "tolerant", "of", "low", "dissolved", "oxygen", "concentrations", "(which", "is", "understandable,", "being", "a", "fish", "from", "slower", "moving", "warm", "waters).", "The", "range", "of", "DOC", "in", "a", "pond", "will", "run", "from", "a", "minimum", "(0mg/l)", "to", "a", "maximum", "(about", "15mg/l),", "where", "even", "the", "supply", "of", "additional", "aeration", "would", "not", "change", "the", "DOC.", "A", "trout", "requires", "a", "high", "DOC", "of", "about", "12mg/l", "while", "the", "more", "tolerant", "koi", "can", "only", "require", "a", "much", "lower" ], [ "litre.", "Even", "so,", "below", "this,", "for", "short", "periods", "of", "time", "they", "can", "gasp", "at", "the", "surface", "to", "gain", "their", "required", "oxygen.", "Koi", "are", "equipped", "with", "gills,", "which", "have", "a", "very", "fine", "and", "delicate", "structure.", "Gills", "are", "used", "to", "absorb", "the", "oxygen", "that", "passes", "through", "them", "with", "some", "oxygen", "being", "dissolved", "in", "the", "water.", "They", "are", "very", "efficient", "at", "removing", "oxygen,", "absorbing", "80%", "of", "the", "oxygen", "that", "speeds", "by", "their", "gills", "in", "the", "water", "(compare", "that", "to", "about", "20%", "efficiency", "of", "our", "lungs).", "Furthermore,", "koi", "are", "able", "to", "pack", "the", "oxygen", "from", "100", "ml", "of", "water", "into", "4", "ml", "of", "blood.", "Quite", "a", "feat", "of", "bioengineering!", "2)", "Bacteria/Fungi", "The", "majority", "of", "bacteria", "in", "a", "pond", "are", "aerobic", "(requiring", "oxygen)", "mostly", "found", "in", "abundance", "in", "the", "filter.", "The", "activity", "(and", "oxygen", "demand)", "of", "a", "bacterial", "population", "will", "vary,", "depending", "on", "the", "water", "temperature", "and", "the", "amount", "of", "food", "that", "is", "present", "for", "them", "to", "break", "down", "in", "the", "water.", "The", "bacteria", "involved", "in", "breaking", "down", "ammonia", "into", "nitrites", "and", "then", "nitrates", "require", "oxygen.", "The", "greater", "the", "supply", "of", "ammonia", "and", "therefore", "nitrites,", "the", "greater", "the", "bacterial", "activity", "and", "oxygen", "demand.", "A", "further", "group", "of", "bacteria,", "known", "as", "heterotrophic", "bacteria,", "feed", "on", "organic", "matter,", "(both", "soluble", "and", "solid),", "that", "is", "present", "in", "the", "pond.", "As", "solids", "gather", "in", "a", "settlement", "chamber", "or", "excess", "food", "is", "allowed", "to", "float", "uneaten,", "the", "oxygen", "demand", "of", "these", "heterotrophic", "bacteria", "will", "rise", "as", "they", "gorge", "themselves", "on", "a", "banquet", "of", "food", "and", "fish", "waste.", "3)", "Invertebrates", "The", "more", "mature", "a", "filter", "becomes,", "the", "greater", "the", "diversity", "of", "the", "invertebrate", "life", "that", "will", "colonize.", "A", "range", "of", "hungry", "critters", "from", "the", "virtually", "microscopic", "to", "the", "easily", "visible", "will", "all", "demand", "oxygen", "as", "they", "break", "down", "organic", "matter.", "Again,", "the", "more", "food", "there", "is", "to", "break", "down,", "the", "greater", "the", "demand", "on", "the", "pond's", "oxygen", "reserves.", "4)", "Plants", "Plants,", "both", "microscopic", "algae", "and", "larger", "plants,", "are", "oxygen", "consumers,", "day", "and", "night.", "Plants,", "like", "fish", "and", "all", "the", "other", "pond", "life,", "respire", "24", "hours", "a", "day,", "using", "up", "oxygen.", "Fortunately,", "the", "plants,", "during", "the", "day,", "also", "add", "oxygen", "to", "the", "pond's", "oxygen", "budget", "in", "excess", "of", "what", "they", "require", "in", "the", "day.", "Oxygen", "Budget", "However,", "as", "most", "koi", "ponds", "are", "sparsely", "planted,", "particularly", "with", "oxygenating", "plants,", "then", "there", "is", "likely", "to", "be", "little", "oxygen", "added", "courtesy", "of", "the", "plant", "life.", "Furthermore,", "as", "fish", "stocking", "and", "feeding", "rates", "are", "in", "excess", "of", "what", "mother", "nature", "would", "decree,", "there", "is", "likely", "to", "be", "insufficient", "oxygen", "entering", "the", "pond", "passively", "by", "diffusion", "from", "the", "atmosphere.", "This", "can", "soon", "lead", "to", "an", "oxygen", "debt,", "where", "the", "demand", "and", "consumption", "of", "oxygen", "is", "in", "excess", "of", "the", "rate", "at", "which", "it", "is", "being", "added.", "Factors", "that", "can", "cause", "the", "DOC", "to", "drop:", "Biological", "Factors", "The", "demands", "on", "the", "oxygen", "dissolved", "in", "the", "pond", "can", "be", "extreme.", "If", "feeding", "rates", "are", "high", "and", "fish", "are", "at", "their", "most", "active,", "then", "koi", "will", "be", "consuming", "oxygen", "at", "a", "high", "rate,", "as", "will", "the", "populations", "of", "bacteria", "and", "invertebrates", "breaking", "down", "the", "ammonia", "and", "undigested", "organic", "matter", "excreted", "by", "koi.", "Plants", "in", "the", "daytime", "are", "natural", "oxygen", "producers,", "exceeding", "their", "own", "oxygen", "demand.", "At", "night,", "however,", "they", "still", "use", "oxygen", "but", "are", "no", "longer", "producers.", "This", "can", "lead", "to", "DOC", "dropping", "at", "night,", "especially", "if", "your", "pond", "is" ] ], [ [ "suffering", "from", "an", "algal", "problem.", "If", "algaecides", "are", "used,", "which", "can", "cause", "algae", "to", "die", "off", "this", "can", "also", "present", "a", "problem", "as", "it", "attracts", "considerable", "bacterial", "activity", "all", "of", "which", "consume", "DO.", "Climatic", "Factors", "Temperature", "has", "a", "twofold", "effect", "on", "DOC.", "Firstly,", "as", "temperature", "increases", "the", "ability", "of", "water", "to", "hold", "dissolved", "oxygen", "decreases.", "Compounding", "this", "phenomenon", "is", "the", "effect", "that", "temperature", "has", "on", "the", "metabolism", "and", "oxygen", "demands", "of", "all", "aquatic", "life", "in", "a", "pond.", "As", "water", "temperatures", "increase,", "koi", "will", "consume", "more", "food,", "excrete", "more", "ammonia,", "which", "attracts", "more", "bacterial", "action", "in", "the", "filter.", "So", "just", "when", "a", "pond", "can", "ill", "afford", "too", "many", "demands", "on", "its", "oxygen,", "the", "oxygen", "requirements", "within", "a", "pond,", "including", "koi,", "reach", "their", "highest", "levels", "of", "the", "year.", "It", "is", "essential", "to", "step", "in", "and", "add", "more", "oxygen.", "Chemical", "Factors", "Pond", "treatments,", "both", "directly", "and", "indirectly,", "will", "cause", "oxygen", "to", "become", "limited", "in", "a", "pond.", "Any", "solute", "(dissolved", "substance", "added", "to", "a", "pond)", "will", "limit", "a", "pond's", "ability", "to", "hold", "as", "much", "oxygen", "as", "was", "possible", "prior", "to", "the", "addition", "of", "a", "solute.", "So", "when", "adding", "any", "treatments,", "additional", "aeration", "is", "always", "recommended.", "Indirectly,", "many", "treatments", "can", "lead", "to", "an", "increase", "in", "organic", "matter", "that", "will", "be", "broken", "down.", "For", "example,", "algaecides", "may", "lead", "to", "dead", "algae", "settling", "out", "in", "the", "filter,", "or", "other", "treatments", "can", "kill", "off", "bacteria,", "or", "lead", "to", "an", "increase", "in", "mucus", "production.", "All", "of", "these", "will", "eventually", "be", "broken", "down", "by", "oxygen-hungry", "bacteria.", "Affects", "of", "low", "DOC", "on", "fish", "Low", "DOC", "has", "very", "obvious", "affects", "on", "koi.", "If", "there", "is", "insufficient", "oxygen", "dissolved", "in", "the", "pond", "water,", "koi", "will", "respond", "in", "the", "short", "term,", "by", "becoming", "lethargic,", "swimming", "slower", "than", "normal,", "and", "perhaps", "hanging", "towards", "the", "surface.", "If", "the", "condition", "persists", "or", "even", "deteriorates,", "koi", "will", "gather", "at", "water", "inlets", "or", "below", "a", "water", "fall", "and", "even", "start", "gasping", "air", "from", "the", "surface.", "By", "this", "stage", "they", "will", "already", "have", "become", "stressed,", "making", "them", "very", "susceptible", "to", "disease.", "Whenever", "I", "have", "taken", "a", "mucus", "scrape", "from", "a", "gasping", "fish,", "I", "have", "found", "an", "abnormally", "high", "density", "of", "protozoan", "parasites,", "busy", "capitalizing", "from", "the", "koi's", "momentary", "lapse", "of", "defense.", "A", "low", "DOC", "is", "also", "likely", "to", "affect", "koi", "health", "indirectly,", "by", "adversely", "affecting", "the", "biological", "filter.", "The", "functioning", "of", "bacteria", "that", "are", "responsible", "for", "the", "breakdown", "of", "toxic", "waste", "is", "directly", "proportional", "to", "the", "dissolved", "oxygen", "concentration.", "Low", "DOC", "will", "lead", "to", "poor", "filter", "performance", "and", "a", "peak", "in", "ammonia/nitrite", "may", "well", "lag", "behind", "such", "an", "incident.", "Detecting", "and", "Measuring", "More", "Precisely", "Immediate", "Action", "A", "DOC", "deficit", "is", "only", "likely", "to", "occur", "at", "warmer", "temperatures,", "and", "a", "change", "in", "koi", "behavior", "will", "be", "the", "first", "sign", "of", "a", "problem.", "A", "more", "precise", "method", "of", "quantifying", "the", "problem", "(or", "the", "margin", "of", "safety", "on", "a", "hot", "day)", "is", "with", "a", "digital", "DO", "meter.", "In", "an", "instant,", "it", "will", "show", "the", "DOC", "and", "more", "advanced", "units", "will", "indicate", "the", "degree", "of", "saturation", "by", "simultaneously", "measuring", "the", "water", "temperature.", "Even", "more", "advanced", "is", "a", "permanent", "DO", "monitoring", "system", "which", "will", "sound", "an", "alarm", "should", "DOC", "levels", "drop", "dangerously", "low.", "Such", "units", "are", "common", "place", "in", "intensive", "aquaculture", "and", "can", "also", "be", "used", "to", "detect", "either", "a", "pump", "or", "air", "pump", "failure", "due", "to", "the", "associated", "drop", "in", "DO.", "An", "acute", "low", "DO", "problem", "can", "occur", "through", "equipment", "failure,", "through", "unforeseen", "circumstances,", "or", "overlooking", "the", "likely", "effects", "of", "a", "pond", "treatment.", "In", "either", "case,", "once", "low", "DOC", "is", "detected,", "remedial", "action", "should", "be", "swift.", "l)", "Agitate", "the", "water's", "surface", "short", "term", "by", "pouring", "buckets", "of", "pond", "water", "back", "into", "the", "pond.", "This", "can", "alleviate", "a", "short", "term", "problem", "while", "you", "think", "of", "a", "more", "permanent", "solution.", "2)", "Spray", "a", "hose", "into", "and", "across", "the", "pond,", "simulating", "rain.", "This", "will", "cause", "DOC", "to", "rise", "as", "an", "emergency", "measure,", "and", "the", "cooler", "tapwater", "will", "allow", "pond", "water", "to", "hold", "more", "oxygen.", "Prevention", "Preventing", "a", "low", "DOC", "is", "far", "better", "than", "responding", "to", "a", "problem,", "and", "there", "are", "many", "aeration", "strategies", "that", "will", "solve", "the", "problem:", "1)", "Air", "Pump", "and", "Diffuser.", "Air", "is", "the", "most", "effective", "when", "it", "is", "pumped", "to", "the", "bottom", "of", "a", "pond", "or", "filter", "chamber", "and", "dispersed", "into", "as", "fine", "bubbles", "as", "possible.", "The", "deeper", "a", "pond", "is,", "the", "greater", "the", "head", "of", "pressure", "an", "air", "pump", "has", "to", "displace", "before", "managing", "to", "deliver", "air", "to", "a", "diffuser.", "Hi-blow", "pumps", "are", "the", "koi", "keeper's", "standard,", "delivering", "good", "volumes", "of", "air", "under", "pressures", "capable", "of", "reaching", "depths", "of", "8'.", "Recognizing", "that", "both", "fish", "and", "filters", "are", "oxygen", "consumers,", "aeration", "should", "be", "added", "to", "both", "the", "pond", "and", "biofilter", "chamber.", "Avoid", "aerating", "settlement", "chambers", "as", "the", "mixing", "action", "created", "by", "the", "airstones", "will", "interfere", "with", "the", "settlement", "action.", "The", "golf", "ball", "type", "of", "air", "diffuser", "is", "very", "easy", "to", "install", "and", "cost", "effective.", "Smaller", "bubbles", "can", "be", "achieved", "using", "different", "diffusers,", "such", "as", "leaky", "pipe,", "micro" ] ], [ [ "-bubblers", "and", "air", "domes,", "the", "latter", "converting", "a", "bottom", "drain", "into", "a", "diffuser", "where", "the", "airline", "can", "be", "trailed,", "out", "of", "sight,", "up", "the", "water", "pipe", "and", "into", "the", "filter.", "2)", "Injection.", "Venturis", "inject", "air", "into", "a", "stream", "of", "water", "as", "it", "returns", "under", "pressure", "from", "the", "pump.", "This", "is", "useful", "at", "creating", "a", "mixing", "effect", "in", "the", "surface", "layers", "of", "the", "pond", "water,", "but", "not", "regarded", "as", "effective", "as", "an", "air", "pump", "and", "diffuser", "system.", "3)", "Waterfalls", "These", "mix", "air", "and", "water", "as", "it", "cascades", "down", "the", "waterfall", "and", "enters", "the", "surface.", "In", "similar", "fashion", "to", "the", "venturi,", "a", "waterfall's", "beneficial", "effects", "are", "limited", "to", "the", "upper", "layers", "of", "pond", "water.", "Dos", "and", "Don'ts", "to", "Avoid", "a", "Low", "DOC", "Do:", "1)Try", "to", "aerate", "a", "pond", "as", "a", "matter", "of", "course,", "endeavoring", "to", "aerate", "down", "to", "the", "pond", "bottom.", "2)Add", "additional", "aeration", "to", "the", "biofilter", "chambers,", "it", "will", "enhance", "bacterial", "colonization.", "3)", "Clean", "out", "settlement", "chambers", "regularly.", "Even", "when", "organic", "matter", "is", "removed", "from", "the", "pond,", "it", "still", "attracts", "oxygen", "demanding", "bacteria", "in", "the", "filter.", "4)", "Add", "additional", "aeration", "during", "any", "pond", "treatment", "or", "medication.", "Don't:", "1)", "Assume", "that", "if", "your", "fish", "have", "survived", "the", "hot", "day", "without", "additional", "aeration,", "they", "will", "survive", "the", "night.", "Night", "time", "is", "when", "DOC", "can", "really", "begin", "to", "drop,", "so", "continue", "to", "aerate.", "2)", "Continue", "to", "aerate", "below", "12°C", "(54°F).", "Allow", "fish", "to", "settle", "in", "warmer", "deeper", "water.", "Aerating", "will", "simply", "mix", "up", "all", "layers", "of", "the", "water,", "losing", "the", "benefit", "of", "having", "such", "a", "deep", "pond.", "3)", "Over", "stock.", "This", "will", "lead", "to", "a", "doubling", "of", "demand", "on", "oxygen", "from", "the", "koi", "and", "the", "bacteria", "breaking", "down", "their", "waste.", "By", "Ben", "Helm", "-", "http://www.watergardenersbible.co.uk/", "About", "the", "Author", "Ben", "Helm", "is", "a", "qualified", "marine", "biologist,", "and", "since", "he", "was", "a", "teenager", "was", "fascinated", "by", "the", "aquatic", "world.", "His", "passion", "led", "him", "to", "work", "at", "the", "local", "aquatic", "store", "on", "an", "unpaid", "voluntary", "basis,", "eventually", "becoming", "the", "assistant", "manager.", "Later,", "he", "farmed", "koi", "for", "a", "living", "on", "an", "innovative", "koi", "farm", "in", "the", "UK.", "Ben", "was", "then", "appointed", "head", "of", "a", "brand", "new", "fish", "farming", "and", "aquatics", "department", "at", "Brooksby", "College,", "teaching", "and", "training", "students", "to", "make", "a", "living", "in", "the", "commercial", "aquatic", "world.", "Ben", "was", "marketing", "and", "product", "manager", "with", "Nishikoi", "for", "six", "years", "developing", "their", "range", "of", "market-leading", "pond", "and", "koi", "foods", "and", "water", "treatments.", "As", "head", "of", "the", "Nishikoi", "lnfoCentre,", "he", "gave", "many", "pond", "and", "koi", "talks", "and", "presentations", "in", "UK,", "Europe", "and", "USA", "-", "which", "also", "led", "to", "some", "BBC", "TV", "and", "radio", "work.", "Over", "his", "career,", "Ben", "has", "written", "and", "had", "published", "nearly", "300", "pond", "and", "koi", "articles", "in", "the", "specialist", "aquatic", "publications", "around", "the", "world,", "with", "many", "articles", "being", "translated", "into", "Italian", "and", "Dutch.", "Ben", "still", "works", "in", "animal", "nutrition,", "for", "a", "global", "pet", "nutrition", "business", "-", "Premier", "Pet", "Nutrition.", "More", "recently,", "Ben", "has", "written", "a", "top-selling", "pond", "book", "-", "The", "Water", "Gardener's", "Bible", "(Rodale)", "for", "which", "Kelly", "Billing", "wrote", "the", "chapter", "on", "pond", "plants", "(which", "has", "now", "also", "been", "translated", "into", "English", "and", "French", "editions).", "Ben", "Helm's", "website", "dedicated", "to", "pond", "and", "koi", "keeping", "advice", "and", "information", "shares", "its", "name", "with", "his", "book:", "http:/", "/www.watergardenersbible.co.uk", "Article", "Source:", "https://www.pondtrademag.com/oxygen-in-ponds/" ] ] ]
[ [ "en", "en" ], [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "The", "Digital", "Marketing", "Professional", "enables", "you", "to", "harness", "the", "power", "of", "Digital", "Marketing", "as", "a", "core", "driver", "of", "the", "marketing", "strategy", "for", "your", "organization.", "You", "will", "understand", "the", "foundation", "principles", "of", "Digital", "Marketing,", "and", "be", "able", "to", "distinguish", "how", "it", "differs", "from", "traditional", "marketing.", "COURSE", "OUTLINE", "The", "Digital", "Marketing", "Professional", "course", "focuses", "on", "the", "planning,", "implementation", "and", "measurement", "of", "your", "Digital", "Marketing", "strategy.", "There", "are", "ten", "modules", "in", "the", "course:", "Module", "1", "Introduction", "to", "Digital", "Marketing", "Module", "2", "Search", "Marketing", "(SEO)", "Module", "3", "Search", "Marketing", "(PPC)", "Module", "4", "Digital", "Display", "Advertising", "Module", "5", "Email", "Marketing", "Module", "6", "Social", "Media", "Marketing", "(Part", "1)", "Module", "7", "Social", "Media", "Marketing", "(Part", "2)", "Module", "8", "Mobile", "Marketing", "Module", "9", "Analytics", "Module", "10", "Strategy", "&", "Planning", "BENEFITS", "Innovative", "strategies", "You", "will", "also", "learn", "how", "to", "leverage", "these", "strategies", "to", "gain", "competitive", "advantage", "for", "both", "your", "business", "and", "your", "career.", "WHO", "SHOULD", "ATTEND", "The", "Digital", "Marketing", "Professional", "is", "ideal", "for", "anyone", "involved", "in", "the", "planning,", "implementation", "or", "measurement", "of", "digital", "strategies", "–", "or", "anyone", "who", "would", "like", "to", "pursue", "a", "career", "in", "this", "area.", "The", "Professional", "Diploma", "in", "Digital", "Marketing", "course", "is", "a", "rounded", "introduction", "to", "all", "the", "core", "digital", "marketing", "disciplines", "and", "will", "prepare", "you", "to", "take", "up", "a", "more", "specialist", "role", "within", "the", "overall", "marketing", "domain.", "EXAM", "INFORMATION", "The", "assessment", "for", "the", "Professional", "Diploma", "in", "Digital", "Marketing", "is", "based", "on", "a", "formal", "computer-based", "examination", "that", "will", "measure", "an", "individual’s", "knowledge", "and", "Digital", "Marketing", "proficiency", "following", "completion", "of", "the", "program.", "The", "duration", "of", "the", "exam", "is", "180", "minutes.", "A", "range", "of", "different", "question", "formats", "are", "used", "including", "Text", "based", "Multiple", "Choice", "Image-based", "Multiple", "Choice", "Matching", "and", "Hot", "Spot", "questions." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "Digital", "Marketing", "Professional", "enables", "you", "to", "harness", "the", "power", "of", "Digital", "Marketing", "as", "a", "core", "driver", "of", "the", "marketing", "strategy", "for", "your", "organization.", "You", "will", "understand", "the", "foundation", "principles", "of", "Digital", "Marketing,", "and", "be", "able", "to", "distinguish", "how", "it", "differs", "from", "traditional", "marketing.", "COURSE", "OUTLINE", "The", "Digital", "Marketing", "Professional", "course", "focuses", "on", "the", "planning,", "implementation", "and", "measurement", "of", "your", "Digital", "Marketing", "strategy.", "There", "are", "ten", "modules", "in", "the", "course:", "Module", "1", "Introduction", "to", "Digital", "Marketing", "Module", "2", "Search", "Marketing", "(SEO)", "Module", "3", "Search", "Marketing", "(PPC)", "Module", "4", "Digital", "Display", "Advertising", "Module", "5", "Email", "Marketing", "Module", "6", "Social", "Media", "Marketing", "(Part", "1)", "Module", "7", "Social", "Media", "Marketing", "(Part", "2)", "Module", "8", "Mobile", "Marketing", "Module", "9", "Analytics", "Module", "10", "Strategy", "&", "Planning", "BENEFITS", "Innovative", "strategies", "You", "will", "also", "learn", "how", "to", "leverage", "these", "strategies", "to", "gain", "competitive", "advantage", "for", "both", "your", "business", "and", "your", "career.", "WHO", "SHOULD", "ATTEND", "The", "Digital", "Marketing", "Professional", "is", "ideal", "for", "anyone", "involved", "in", "the", "planning,", "implementation", "or", "measurement", "of", "digital", "strategies", "–", "or", "anyone", "who", "would", "like", "to", "pursue", "a", "career", "in", "this", "area.", "The", "Professional", "Diploma", "in", "Digital", "Marketing", "course", "is", "a", "rounded", "introduction", "to", "all", "the", "core", "digital", "marketing", "disciplines", "and", "will", "prepare", "you", "to", "take", "up", "a", "more", "specialist", "role", "within", "the", "overall", "marketing", "domain.", "EXAM", "INFORMATION", "The", "assessment", "for", "the", "Professional", "Diploma", "in", "Digital", "Marketing", "is", "based", "on", "a", "formal", "computer-based", "examination", "that", "will", "measure", "an", "individual’s", "knowledge", "and", "Digital", "Marketing", "proficiency", "following", "completion", "of", "the", "program.", "The", "duration", "of", "the", "exam", "is", "180", "minutes.", "A", "range", "of", "different", "question", "formats", "are", "used", "including", "Text", "based", "Multiple", "Choice", "Image-based", "Multiple", "Choice", "Matching", "and", "Hot", "Spot", "questions." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "click", "to", "enlarge", "Courtesy", "of", "YouTube", "A", "still", "photo", "from", "a", "short", "video", "on", "the", "reading", "clinic.", "PDF", "Letter", "of", "Support", "For", "the", "Reading", "Clinic", "A", "large", "budget", "deficit", "is", "forcing", "Oakland", "Unified", "School", "District", "administrators", "to", "make", "cuts,", "and", "according", "to", "school", "employees", "one", "casualty", "could", "be", "the", "district’s", "highly", "touted,", "16-year-old", "special", "education", "reading", "clinic.Founded", "in", "2001,", "the", "clinic", "provides", "direct", "instruction", "to", "72", "special-education", "students", "from", "46", "different", "public", "and", "charter", "elementary", "and", "middle", "schools.", "It", "survived", "OUSD’s", "tumultuous", "finances", "of", "the", "early", "2000s,", "when", "the", "budget", "was", "in", "shambles,", "as", "well", "as", "the", "state’s", "takeover", "of", "the", "district.But", "now,", "according", "to", "clinic", "staff", "and", "letters", "to", "parents", "reviewed", "by", "the,", "it", "appears", "that", "the", "reading", "clinic", "could", "close", "by", "the", "end", "of", "this", "year.“It's", "shocking", "that", "it's", "not", "surviving", "the", "budget", "cuts", "now,”", "said", "one", "staff", "member,", "who", "asked", "to", "remain", "anonymous", "because", "they", "didn’t", "have", "permission", "from", "school", "officials", "to", "speak", "on", "the", "record.Micaela", "Reinstein,", "a", "teacher", "at", "the", "clinic,", "says", "eighth", "graders", "often", "come", "to", "her", "functionally", "illiterate,", "but", "she", "is", "able", "to", "teach", "them", "how", "to", "read", "in", "just", "a", "few", "short", "years.", "“Being", "able", "to", "read", "is", "a", "survival", "skill,\"", "she", "said.", "\"They", "can", "be", "independent", "in", "this", "world.”Sources", "say", "the", "acting", "directors", "of", "the", "clinic", "surprised", "staff", "last", "Wednesday", "when", "they", "announced", "that", "the", "reading", "clinic", "would", "permanently", "close", "at", "the", "end", "of", "this", "academic", "year.Although", "the", "district", "hasn't", "finalized", "its", "budget", "for", "next", "year", "—", "it", "must", "be", "approved", "by", "June", "28", "—", "administrators", "of", "Oakland", "Unified's", "Programs", "for", "Exceptional", "Children,", "which", "the", "reading", "clinic", "is", "housed", "under,", "plan", "to", "close", "it", "and", "transfer", "its", "teachers", "into", "other", "classrooms.According", "to", "one", "staffer", "at", "the", "clinic,", "the", "six", "certificated", "special-education", "teachers", "and", "other", "aides", "employed", "there", "will", "likely", "be", "moved", "to", "regular", "special-needs", "classrooms,", "which", "already", "face", "teacher", "shortages.Administrators", "plan", "to", "open", "24", "more", "special-education", "classrooms", "across", "the", "district", "next", "year.The", "clinic", "has", "made", "a", "meaningful", "impact", "during", "its", "16", "years", "in", "operation,", "say", "parents.", "Lisa", "Blakely", "says", "it", "helped", "her", "intellectually", "disabled", "daughter", "make", "“leaps", "and", "bounds”", "as", "a", "reader.", "Her", "daughter,", "a", "sixth", "grader", "in", "age,", "was", "at", "a", "second", "grade", "reading", "level", "—", "within", "two", "years", "she", "advanced", "nearly", "four", "grades.The", "reading", "clinic", "was", "the", "lone", "special-education", "program", "in", "OUSD", "Blakely’s", "daughter", "had", "a", "successful", "experience", "with,", "she", "said.", "According", "to", "Blakely,", "special-ed", "classrooms", "haven’t", "been", "able", "to", "provide", "consistent", "support", "for", "students,", "and", "the", "district", "has", "struggled", "to", "retain", "special", "education", "teachers.", "For", "example,", "Blakely’s", "daughter", "had", "14", "substitute", "teachers", "in", "one", "classroom", "in", "one", "year.“The", "reading", "clinic", "has", "been", "admittedly", "a", "high", "cost,”", "said", "Trish", "Gorham", "president", "of", "the", "Oakland", "Education", "Association.", "“But", "it", "also", "works", "miracles", "for", "students.”It", "makes", "no", "sense", "to", "eliminate", "a", "program", "that", "has", "been", "an", "“unqualified", "success,”", "Gorham", "said.School", "administrators", "cite", "rising", "costs", "of", "Programs", "for", "Exceptional", "Children", "as", "one", "of", "the", "reasons", "for", "the", "large", "budget", "shortfall", "this", "year.", "Oakland", "school", "board", "chairman", "James", "Harris", "has", "said", "previously", "that", "controlling", "special-education", "program", "costs,", "and", "understanding", "why", "they", "continue", "to", "rise,", "is", "a", "challenge", "for", "Oakland", "schools.Teachers", "and", "parents", "complain", "that", "Oakland", "Unified", "is", "not", "equipped", "to", "serve", "the", "city’s", "large", "population", "of", "special", "education", "students.", "They", "cite", "a", "high", "turnover", "rate", "for", "teachers,", "and", "the", "fact", "that", "students", "with", "intellectual", "disabilities", "don’t", "receive", "enough", "individual", "attention.", "Many", "of", "the", "district’s", "certificated", "teachers", "are", "fielding", "far", "more", "cases", "than", "they", "should", "be.Oakland", "Unified’s", "population", "of", "students", "using", "special", "education", "services", "has", "grown", "by", "the", "hundreds", "over", "the", "past", "few", "years.", "Currently,", "there", "are", "another", "800", "students", "in", "the", "pipeline", "being", "assessed", "as", "to", "whether", "they", "also", "need", "special", "education", "services.", "Clinic", "staff", "say", "a", "meager", "24", "more", "classes", "is", "not", "going", "to", "plug", "this", "hole,", "therefore", "cutting", "their", "reading", "center", "makes", "for", "an", "ineffective", "allocation", "of", "resources.The", "district", "has", "not", "yet", "officially", "notified", "parents,", "and", "special", "education", "department", "administrators", "did", "not", "return", "phone", "calls", "seeking", "comment.“This", "is", "so", "consistent", "with", "[OUSD],", "in", "that", "there", "has", "been", "no", "communication,”", "Blakely", "complained.Before", "joining", "the", "clinic,", "she", "filed", "complaints", "with", "the", "district,", "asking", "that", "it", "acquire", "better", "resources", "for", "her", "daughter.", "“I’m", "going", "to", "have", "to", "expend", "energy", "to", "fight", "for", "my", "daughter", "again", "if", "the", "clinic", "is", "closed,”", "Blakely", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "click", "to", "enlarge", "Courtesy", "of", "YouTube", "A", "still", "photo", "from", "a", "short", "video", "on", "the", "reading", "clinic.", "PDF", "Letter", "of", "Support", "For", "the", "Reading", "Clinic", "A", "large", "budget", "deficit", "is", "forcing", "Oakland", "Unified", "School", "District", "administrators", "to", "make", "cuts,", "and", "according", "to", "school", "employees", "one", "casualty", "could", "be", "the", "district’s", "highly", "touted,", "16-year-old", "special", "education", "reading", "clinic.Founded", "in", "2001,", "the", "clinic", "provides", "direct", "instruction", "to", "72", "special-education", "students", "from", "46", "different", "public", "and", "charter", "elementary", "and", "middle", "schools.", "It", "survived", "OUSD’s", "tumultuous", "finances", "of", "the", "early", "2000s,", "when", "the", "budget", "was", "in", "shambles,", "as", "well", "as", "the", "state’s", "takeover", "of", "the", "district.But", "now,", "according", "to", "clinic", "staff", "and", "letters", "to", "parents", "reviewed", "by", "the,", "it", "appears", "that", "the", "reading", "clinic", "could", "close", "by", "the", "end", "of", "this", "year.“It's", "shocking", "that", "it's", "not", "surviving", "the", "budget", "cuts", "now,”", "said", "one", "staff", "member,", "who", "asked", "to", "remain", "anonymous", "because", "they", "didn’t", "have", "permission", "from", "school", "officials", "to", "speak", "on", "the", "record.Micaela", "Reinstein,", "a", "teacher", "at", "the", "clinic,", "says", "eighth", "graders", "often", "come", "to", "her", "functionally", "illiterate,", "but", "she", "is", "able", "to", "teach", "them", "how", "to", "read", "in", "just", "a", "few", "short", "years.", "“Being", "able", "to", "read", "is", "a", "survival", "skill,\"", "she", "said.", "\"They", "can", "be", "independent", "in", "this", "world.”Sources", "say", "the", "acting", "directors", "of", "the", "clinic", "surprised", "staff", "last", "Wednesday", "when", "they", "announced", "that", "the", "reading", "clinic", "would", "permanently", "close", "at", "the", "end", "of", "this", "academic", "year.Although", "the", "district", "hasn't", "finalized", "its", "budget", "for", "next", "year", "—", "it", "must", "be", "approved", "by", "June", "28", "—", "administrators", "of", "Oakland", "Unified's", "Programs", "for", "Exceptional", "Children,", "which", "the", "reading", "clinic", "is", "housed", "under,", "plan", "to", "close", "it", "and", "transfer", "its", "teachers", "into", "other", "classrooms.According", "to", "one", "staffer", "at", "the", "clinic,", "the", "six", "certificated", "special-education", "teachers", "and", "other", "aides", "employed", "there", "will", "likely", "be", "moved", "to", "regular", "special-needs", "classrooms,", "which", "already", "face", "teacher", "shortages.Administrators", "plan", "to", "open", "24", "more", "special-education", "classrooms", "across", "the", "district", "next", "year.The", "clinic", "has", "made", "a", "meaningful", "impact", "during", "its", "16", "years", "in", "operation,", "say", "parents.", "Lisa", "Blakely", "says", "it", "helped", "her", "intellectually", "disabled", "daughter", "make", "“leaps", "and", "bounds”", "as", "a", "reader.", "Her", "daughter,", "a", "sixth", "grader", "in", "age,", "was", "at", "a", "second", "grade", "reading", "level", "—", "within", "two", "years", "she", "advanced", "nearly", "four", "grades.The", "reading", "clinic", "was", "the", "lone", "special-education", "program", "in", "OUSD", "Blakely’s", "daughter", "had", "a", "successful", "experience", "with,", "she", "said.", "According", "to", "Blakely,", "special-ed", "classrooms", "haven’t", "been", "able", "to", "provide", "consistent", "support", "for", "students,", "and", "the", "district", "has", "struggled", "to", "retain", "special", "education", "teachers.", "For", "example,", "Blakely’s", "daughter", "had", "14", "substitute", "teachers", "in", "one", "classroom", "in", "one", "year.“The", "reading", "clinic", "has", "been", "admittedly", "a", "high", "cost,”", "said", "Trish", "Gorham", "president", "of", "the", "Oakland", "Education", "Association.", "“But", "it", "also", "works", "miracles", "for", "students.”It", "makes", "no", "sense", "to", "eliminate", "a", "program", "that", "has", "been", "an", "“unqualified", "success,”", "Gorham", "said.School", "administrators", "cite", "rising", "costs", "of", "Programs", "for", "Exceptional", "Children", "as", "one", "of", "the", "reasons", "for", "the", "large", "budget", "shortfall", "this", "year.", "Oakland", "school", "board", "chairman", "James", "Harris", "has", "said", "previously", "that", "controlling", "special-education", "program", "costs,", "and", "understanding", "why", "they", "continue", "to", "rise,", "is", "a", "challenge", "for", "Oakland", "schools.Teachers", "and", "parents", "complain", "that", "Oakland", "Unified", "is", "not", "equipped", "to", "serve", "the", "city’s", "large", "population", "of", "special", "education", "students.", "They", "cite", "a", "high", "turnover", "rate", "for", "teachers,", "and", "the", "fact", "that", "students", "with", "intellectual", "disabilities", "don’t", "receive", "enough", "individual", "attention.", "Many", "of", "the", "district’s", "certificated", "teachers", "are", "fielding", "far", "more", "cases", "than", "they", "should", "be.Oakland", "Unified’s", "population", "of", "students", "using", "special", "education", "services", "has", "grown", "by", "the", "hundreds", "over", "the", "past", "few", "years.", "Currently,", "there", "are", "another", "800", "students", "in", "the", "pipeline", "being", "assessed", "as", "to", "whether", "they", "also", "need", "special", "education", "services.", "Clinic", "staff", "say", "a", "meager", "24", "more", "classes", "is", "not", "going", "to", "plug", "this", "hole,", "therefore", "cutting", "their", "reading", "center", "makes", "for", "an", "ineffective", "allocation", "of", "resources.The", "district", "has", "not", "yet", "officially", "notified", "parents,", "and", "special", "education", "department", "administrators", "did", "not", "return", "phone", "calls", "seeking", "comment.“This", "is", "so", "consistent", "with", "[OUSD],", "in", "that", "there", "has", "been", "no", "communication,”", "Blakely", "complained.Before", "joining", "the", "clinic,", "she", "filed", "complaints", "with", "the", "district,", "asking", "that", "it", "acquire", "better", "resources", "for", "her", "daughter.", "“I’m", "going", "to", "have", "to", "expend", "energy", "to", "fight", "for", "my", "daughter", "again", "if", "the", "clinic", "is", "closed,”", "Blakely", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "It’s", "a", "celebration", "of", "“great", "people", "who", "make", "things", "happen”,", "suggest", "stout", "supporters", "of", "Arthur’s", "Day.", "Those", "calling", "for", "last", "orders", "on", "the", "boozy", "affair,", "meanwhile,", "insist", "it", "is", "a", "crass", "exploitation", "of", "a", "nation’s", "weakness", "for", "alcohol", "by", "a", "multinational", "corporation", "profiting", "handsomely", "from", "products", "linked", "to", "some", "of", "our", "society’s", "gravest", "ills.", "Arthur’s", "Day", "celebrates", "its", "fifth", "anniversary", "on", "Thursday", "with", "events", "in", "several", "countries.", "About", "1,000", "performers", "will", "be", "paid", "handsomely", "by", "Diageo", "to", "raise", "a", "glass", "to", "Arthur", "at", "500", "venues", "around", "Ireland.", "The", "company,", "which", "records", "profits", "of", "more", "than", "€3", "billion", "annually,", "is", "anxious", "its", "brainchild", "is", "recognised", "as", "a", "joyous", "celebration", "of", "the", "Irish", "pub,", "Irish", "conviviality", "and", "Irish", "culture.", "But", "no", "matter", "how", "loudly", "it", "urges", "people", "to", "“drink", "responsibly”", "and", "despite", "all", "its", "talk", "of", "the", "good", "things", "it", "does", "with", "(a", "tiny", "portion)", "of", "the", "money", "it", "makes,", "it", "is", "struggling", "to", "shake", "off", "some", "awkward", "truths.", "The", "most", "awkward", "one", "being", "the", "damage", "its", "products", "do.", "Dangerous", "More", "than", "two", "years", "ago,", "Minister", "for", "Health", "Dr", "James", "Reilly", "was", "told", "by", "experts", "that", "adults", "here", "drink", "“in", "a", "more", "dangerous", "way", "than", "nearly", "any", "other", "country”,", "while", "children", "“drink", "from", "a", "younger", "age”", "and", "“more", "than", "ever", "before”.", "He", "heard", "that", "alcohol", "was", "“a", "contributory", "factor", "in", "half", "of", "all", "suicides", "and", "it", "accounts", "for", "up", "to", "10", "per", "cent", "of", "bed", "days", "in", "hospitals,", "while", "alcohol-related", "road", "accidents", "cost", "an", "estimated", "€530", "million", "in", "2007”.", "Alcohol-related", "liver", "disease,", "meanwhile,", "has", "doubled", "over", "the", "past", "decade.", "Sing", "a", "Song", "to", "Arthur", "That", "is", "the", "bigger", "picture.", "The", "smaller", "picture", "is", "not", "too", "pretty", "either.", "It", "is", "plain", "to", "see", "for", "anyone", "who", "has", "ever", "wandered", "the", "streets", "of", "Dublin,", "Cork", "or", "Galway,", "stepping", "over", "the", "rivers", "of", "urine", "and", "vomit", "which", "flow", "freely,", "and", "dodging", "the", "rows", "that", "break", "out", "as", "closing", "time", "looms", "just", "what", "impact", "Arthur’s", "Day", "can", "have.", "This", "view", "was", "confirmed", "by", "the", "Royal", "College", "of", "Physicians", "of", "Ireland", "yesterday,", "which", "reminded", "people", "that", "Arthur’s", "Day", "was", "behind", "a", "30", "per", "cent", "increase", "in", "ambulance", "call-outs.", "In", "the", "doctors’", "corner", "are", "musicians", "such", "as", "Christy", "Moore,", "Steve", "Wall", "and", "The", "Waterboys,", "while", "across", "a", "wider", "spectrum,", "calls", "for", "a", "boycott", "of", "Arthur’s", "drinks", "on", "the", "big", "day", "are", "growing,", "with", "even", "some", "Diageo", "people", "privately", "admitting", "that", "the", "hangover", "may", "not", "be", "worth", "it.", "But", "just", "how", "much", "responsibility", "rests", "with", "the", "company?", "It", "has", "done", "all", "it", "can", "to", "insert", "an", "elaborate", "and", "expensive", "marketing", "wheeze", "into", "the", "Irish", "social", "calendar.", "But", "it", "doesn’t", "hold", "people", "down", "and", "force", "the", "black", "stuff", "down", "their", "throats", "with", "a", "funnel.", "Choices", "People", "make", "choices.", "People", "will", "choose", "to", "go", "out", "on", "Thursday.", "And", "some", "of", "them", "will", "choose", "to", "get", "drunk", "–", "and", "some", "may", "possibly", "end", "up", "in", "life-threatening", "situations", "as", "a", "result.", "The", "drink-related", "problems", "besetting", "the", "country", "will", "continue", "until", "those", "who", "can", "make", "a", "more", "tangible", "difference", "do", "something.", "The", "Government", "said", "there", "would", "be", "an", "overhaul", "of", "legislation", "once", "the", "National", "Substance", "Misuse", "Strategy", "steering", "group", "published", "its", "report", "18", "months", "ago,", "with", "controls", "on", "pricing", "and", "advertising", "and", "greater", "enforcement", "of", "existing", "laws", "aimed", "at", "curbing", "problem", "drinking.", "Nothing", "has", "happened", "yet", "and", "until", "it", "does,", "the", "palaver", "about", "Arthur", "will", "be", "nothing", "more", "than", "a", "sideshow", "to", "be", "forgotten", "as", "soon", "as", "the", "bad", "Friday", "hangover", "lifts." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "It’s", "a", "celebration", "of", "“great", "people", "who", "make", "things", "happen”,", "suggest", "stout", "supporters", "of", "Arthur’s", "Day.", "Those", "calling", "for", "last", "orders", "on", "the", "boozy", "affair,", "meanwhile,", "insist", "it", "is", "a", "crass", "exploitation", "of", "a", "nation’s", "weakness", "for", "alcohol", "by", "a", "multinational", "corporation", "profiting", "handsomely", "from", "products", "linked", "to", "some", "of", "our", "society’s", "gravest", "ills.", "Arthur’s", "Day", "celebrates", "its", "fifth", "anniversary", "on", "Thursday", "with", "events", "in", "several", "countries.", "About", "1,000", "performers", "will", "be", "paid", "handsomely", "by", "Diageo", "to", "raise", "a", "glass", "to", "Arthur", "at", "500", "venues", "around", "Ireland.", "The", "company,", "which", "records", "profits", "of", "more", "than", "€3", "billion", "annually,", "is", "anxious", "its", "brainchild", "is", "recognised", "as", "a", "joyous", "celebration", "of", "the", "Irish", "pub,", "Irish", "conviviality", "and", "Irish", "culture.", "But", "no", "matter", "how", "loudly", "it", "urges", "people", "to", "“drink", "responsibly”", "and", "despite", "all", "its", "talk", "of", "the", "good", "things", "it", "does", "with", "(a", "tiny", "portion)", "of", "the", "money", "it", "makes,", "it", "is", "struggling", "to", "shake", "off", "some", "awkward", "truths.", "The", "most", "awkward", "one", "being", "the", "damage", "its", "products", "do.", "Dangerous", "More", "than", "two", "years", "ago,", "Minister", "for", "Health", "Dr", "James", "Reilly", "was", "told", "by", "experts", "that", "adults", "here", "drink", "“in", "a", "more", "dangerous", "way", "than", "nearly", "any", "other", "country”,", "while", "children", "“drink", "from", "a", "younger", "age”", "and", "“more", "than", "ever", "before”.", "He", "heard", "that", "alcohol", "was", "“a", "contributory", "factor", "in", "half", "of", "all", "suicides", "and", "it", "accounts", "for", "up", "to", "10", "per", "cent", "of", "bed", "days", "in", "hospitals,", "while", "alcohol-related", "road", "accidents", "cost", "an", "estimated", "€530", "million", "in", "2007”.", "Alcohol-related", "liver", "disease,", "meanwhile,", "has", "doubled", "over", "the", "past", "decade.", "Sing", "a", "Song", "to", "Arthur", "That", "is", "the", "bigger", "picture.", "The", "smaller", "picture", "is", "not", "too", "pretty", "either.", "It", "is", "plain", "to", "see", "for", "anyone", "who", "has", "ever", "wandered", "the", "streets", "of", "Dublin,", "Cork", "or", "Galway,", "stepping", "over", "the", "rivers", "of", "urine", "and", "vomit", "which", "flow", "freely,", "and", "dodging", "the", "rows", "that", "break", "out", "as", "closing", "time", "looms", "just", "what", "impact", "Arthur’s", "Day", "can", "have.", "This", "view", "was", "confirmed", "by", "the", "Royal", "College", "of", "Physicians", "of", "Ireland", "yesterday,", "which", "reminded", "people", "that", "Arthur’s", "Day", "was", "behind", "a", "30", "per", "cent", "increase", "in", "ambulance", "call-outs.", "In", "the", "doctors’", "corner", "are", "musicians", "such", "as", "Christy", "Moore,", "Steve", "Wall", "and", "The", "Waterboys,", "while", "across", "a", "wider", "spectrum,", "calls", "for", "a", "boycott", "of", "Arthur’s", "drinks", "on", "the", "big", "day", "are", "growing,", "with", "even", "some", "Diageo", "people", "privately", "admitting", "that", "the", "hangover", "may", "not", "be", "worth", "it.", "But", "just", "how", "much", "responsibility", "rests", "with", "the", "company?", "It", "has", "done", "all", "it", "can", "to", "insert", "an", "elaborate", "and", "expensive", "marketing", "wheeze", "into", "the", "Irish", "social", "calendar.", "But", "it", "doesn’t", "hold", "people", "down", "and", "force", "the", "black", "stuff", "down", "their", "throats", "with", "a", "funnel.", "Choices", "People", "make", "choices.", "People", "will", "choose", "to", "go", "out", "on", "Thursday.", "And", "some", "of", "them", "will", "choose", "to", "get", "drunk", "–", "and", "some", "may", "possibly", "end", "up", "in", "life-threatening", "situations", "as", "a", "result.", "The", "drink-related", "problems", "besetting", "the", "country", "will", "continue", "until", "those", "who", "can", "make", "a", "more", "tangible", "difference", "do", "something.", "The", "Government", "said", "there", "would", "be", "an", "overhaul", "of", "legislation", "once", "the", "National", "Substance", "Misuse", "Strategy", "steering", "group", "published", "its", "report", "18", "months", "ago,", "with", "controls", "on", "pricing", "and", "advertising", "and", "greater", "enforcement", "of", "existing", "laws", "aimed", "at", "curbing", "problem", "drinking.", "Nothing", "has", "happened", "yet", "and", "until", "it", "does,", "the", "palaver", "about", "Arthur", "will", "be", "nothing", "more", "than", "a", "sideshow", "to", "be", "forgotten", "as", "soon", "as", "the", "bad", "Friday", "hangover", "lifts." ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "bi", "mono", "mono", "mono", "mono", "mono", "mono", "mono" ]
[ [ "Met", "Talpa", "Connect", "koppelt", "John", "de", "Mol", "zoveel", "mogelijk", "gebruikersdata", "aan", "elkaar.", "Op", "die", "manier", "wil", "hij", "concurreren", "met", "Facebook", "en", "Google", "en", "de", "waarde", "van", "zijn", "bedrijf", "opdrijven.", "De", "bedenker", "van", "Big", "Brother", "gaat", "heel", "ver", "in", "het", "profileren", "van", "zijn", "klanten,", "blijkt", "uit", "onderzoek", "van", "Follow", "the", "Money", "en", "Investico.", "Dat", "staat", "op", "gespannen", "voet", "met", "de", "privacywetgeving.", "‘Heeft", "een", "speler", "geen", "zin", "om", "gefilmd", "te", "worden", "voor", "VoetbalTV?", "Dan", "moet", "hij", "maar", "niet", "gaan", "voetballen.’", "Het", "is", "een", "honingpot", "voor", "adverteerders.", "Hoe", "meer", "de", "aanbieder", "van", "wervende", "boodschappen", "van", "je", "weet,", "hoe", "beter", "hij", "je", "behoeften", "kan", "bevredigen", "en", "hoe", "groter", "de", "kans", "dat", "het", "tot", "een", "transactie", "komt.", "Voor", "Talpa", "snijdt", "het", "mes", "aan", "twee", "kanten:", "met", "diezelfde", "data", "kan", "het", "mediabedrijf", "weer", "nieuwe", "programmaformats", "ontwikkelen", "die", "zijn", "toegesneden", "op", "de", "voorkeuren", "van", "een", "specifieke", "groep", "kijkers", "of", "luisteraars,", "waarbinnen", "ruimte", "is", "voor", "product", "placement", "(het", "aan", "de", "man", "brengen", "van", "producten", "in", "programma’s", "zelf)", "en", "andere", "advertentiemogelijkheden.", "Het", "is", "de", "belangrijkste", "reden", "dat", "De", "Mol", "een", "samenwerking", "is", "aangegaan", "met", "telecombedrijf", "KPN.", "Met", "addressable", "tv", "wil", "Talpa", "de", "abonnees", "van", "het", "telecombedrijf", "tv-reclames", "voorschotelen", "die", "hen", "op", "het", "lijf", "zijn", "geschreven.", "Schmitz:", "‘Zorgen", "dat", "de", "gegevens", "die", "we", "van", "jou", "hebben", "in", "het", "juiste", "bakje", "terechtkomen", "is", "het", "allermoeilijkste.", "Dus", "dat", "we", "gewoon", "een", "sterk", "profiel", "van", "je", "kunnen", "bouwen.’", "Als", "dat", "lukt,", "kan", "het", "zijn", "dat", "je", "ineens", "in", "het", "systeem", "staat", "als", "een", "33-jarige,", "alleenstaande", "man", "uit", "Nijmegen,", "die", "aan", "karpervissen", "doet,", "een", "voorkeur", "heeft", "voor", "indierock,", "graag", "op", "vakantie", "gaat", "naar", "Scandinavië", "en", "online", "jaagt", "op", "limited", "editions", "van", "Gola-sneakers.", "Dan", "ben", "je", "gefunneld", "door", "John", "de", "Mol.", "Vervolgens", "hebben", "de", "programmeurs", "van", "Talpa", "daar", "zelf", "een", "laag", "overheen", "gelegd,", "die", "ze", "Talpa", "Connect", "noemen,", "of", "ook", "wel", "Smart", "Data", "Platform.", "Hun", "algoritmen", "maken", "op", "basis", "van", "een", "selectie", "uit", "al", "die", "verrijkte,", "gekoppelde", "en", "gerangschikte", "gegevens", "een", "zo", "concreet", "mogelijk", "profiel", "van", "de", "gebruiker.", "Niet", "alle", "data", "worden", "overigens", "per", "se", "doorgezet", "naar", "deze", "‘slimme", "laag’.", "Volgens", "Talpa", "gebruikt", "het", "bedrijf", "een", "filter", "dat", "‘bijzondere", "en", "gevoelige", "persoonsgegevens’", "eruit", "haalt.", "Dan", "kan", "het", "zijn", "dat", "als", "jij", "je", "bij", "Net5", "aanmeldt,", "je", "dat", "dankzij", "inlogsysteembouwer", "Gigya", "ook", "automatisch", "doet", "bij", "538,", "Utopia", "en", "Piets", "Weerbericht.", "Zo", "zijn", "er", "veel", "meer", "diensten", "waar", "Talpa", "gebruik", "van", "maakt,", "met", "namen", "als", "Tealium,", "GoodData", "en", "Relay42,", "die", "er", "voor", "zorgen", "dat", "de", "data", "van", "kijkers,", "luisteraars", "en", "gebruikers", "op", "de", "juiste", "plek", "terechtkomen,", "dat", "betalingssystemen", "en", "players", "gestandaardiseerd", "zijn,", "dat", "advertenties", "overal", "kunnen", "worden", "getoond.", "Als", "je", "al", "die", "Emesa-gegevens", "optelt", "bij", "de", "informatie", "van", "alle", "andere", "Talpa-gebruikers", "krijg", "je", "een", "idee", "van", "he" ], [ "t", "datareservoir", "dat", "het", "mediabedrijf", "laat", "vollopen.", "Daarna", "is", "het", "zaak", "er", "waarde", "aan", "toe", "te", "kennen", "door", "de", "informatie", "met", "elkaar", "te", "verbinden.", "Om", "voor", "die", "aansluiting", "te", "zorgen", "heeft", "De", "Mol", "verschillende", "softwarepakketten", "gekocht", "bij", "evenzoveel", "techbedrijven,", "modules", "die", "Talpa", "kan", "inpluggen", "bij", "al", "zijn", "producten.", "Platform", "Emesa", "levert", "zijn", "eigen", "‘databerg’,", "gedestilleerd", "uit", "vijf", "miljoen", "accounts", "en", "jaarlijks", "honderdduizenden", "transacties", "op", "VakantieVeilingen,", "TicketScout", "en", "ActievandeDag.", "Daar", "kan", "van", "alles", "uitrollen:", "je", "favoriete", "reisbestemmingen,", "welk", "soort", "concerten", "en", "voorstellingen", "je", "graag", "bezoekt,", "welke", "kortingsproducten", "je", "voorkeur", "hebben.", "‘Verschrikkelijk", "waardevolle", "informatie,’", "noemt", "Pim", "Schmitz", "dat.", "‘Het", "gaat", "om", "de", "intent.", "Als", "iemand", "zeven", "keer", "op", "een", "messenset", "biedt,", "zal", "hij", "koken", "misschien", "wel", "leuk", "vinden.’", "Hij", "vergelijkt", "het", "met", "mensen", "die", "op", "Google", "de", "vraag", "stellen", "wat", "de", "beste", "hypotheekverstrekker", "is.", "‘Dan", "krijg", "je", "een", "week", "lang", "banners", "en", "advertenties", "van", "banken.", "Dát", "is", "intent.’", "Aan", "al", "die", "producten", "hangen", "websites", "en", "apps,", "waarmee", "de", "Talpa-klant", "zijn", "favoriete", "programma’s", "kan", "volgen", "en", "terugkijken,", "online", "kan", "meespelen", "en", "met", "gelijkgezinden", "kan", "chatten", "in", "communities.", "Als", "je", "gebruik", "wilt", "maken", "van", "die", "diensten,", "vraagt", "Talpa", "je", "een", "profiel", "aan", "te", "maken,", "de", "eerste", "stap", "op", "weg", "naar", "de", "‘volledige", "trechter’.", "Vanaf", "dat", "moment", "ben", "je", "ingelogd", "en", "deelt", "je", "virtuele", "identiteit", "data", "met", "Talpa.", "Dat", "kunnen", "je", "sportprestaties", "bij", "VoetbalTV", "zijn", "of", "je", "muziekvoorkeuren", "bij", "Juke", "en", "Radio", "538.", "Bij", "die", "laatste", "kun", "je", "via", "de", "site", "overigens", "ook", "heel", "andere", "informatie", "kwijt,", "in", "enquêtes", "met", "vragen", "als:", "Wat", "doe", "je", "het", "liefst?", "Hoe", "rijk", "ben", "je?", "En:", "ben", "je", "een", "beest", "in", "bed?", "Die", "zogenaamde", "formats", "vormen", "nog", "steeds", "de", "basis", "van", "zijn", "bedrijf;", "de", "spelletjes,", "quizzen,", "shows", "en", "realityprogamma’s", "waarmee", "Talpa", "klanten", "als", "RTL", "bedient", "en", "natuurlijk", "eigen", "zenders", "als", "SBS6,", "Net5", "en", "Veronica", "en", "radiostations,", "waaronder", "538", "en", "Sky", "Radio.", "Daarnaast", "heeft", "De", "Mol", "nu", "met", "Juke", "nu", "ook", "een", "eigen", "muziekstreamingservice", "à", "la", "Spotify", "en", "sinds", "de", "overname", "van", "Emesa", "een", "eigen", "e-commerce", "platform,", "een", "lokale", "variant", "op", "Amazon.", "Via", "al", "die", "kanalen", "bereikt", "Talpa", "naar", "eigen", "zeggen", "wekelijks", "zo’n", "13", "miljoen", "Nederlanders.", "Wij", "zijn", "er", "voor", "de", "Nederlander,", "luidt", "de", "boodschap", "van", "De", "Mol.", "Daarom", "heeft", "hij", "Talpa", "Connect", "gebouwd", "en", "daarom", "ook", "heeft", "hij", "vorige", "jaar", "e-commerce", "platform", "Emesa", "ingelijfd,", "eigenaar", "van", "sites", "als", "VakantieVeilingen.nl.", "‘Daar", "zitten", "vijf", "miljoen", "klanten,", "waarvan", "ook", "bekend", "is", "wie", "ze", "zijn,", "wat", "ze", "gedaan", "hebben,", "gekocht", "hebben,", "en", "dat", "is", "hele", "belangrijke", "informatie,’", "benadrukte", "De", "Mol", "’s", "avonds", "bij", "Nieuwsuur.", "Met", "al", "die", "vergaarde", "kennis", "kan", "hij", "zijn", "landgenoten", "bedienen", "met", "het", "allerbeste", "amusement", "van", "eigen", "bodem.", "Met", "Talpa", "Network", "wil", "De", "Mol", "die", "neergang", "stoppen.", "‘" ], [ "Met", "dit", "lokale", "netwerk", "zijn", "wij", "waar", "en", "wanneer", "dat", "het", "beste", "uitkomt", "voor", "de", "consument,’", "zei", "hij", "eind", "vorig", "jaar", "op", "het", "podium", "van", "DeLaMar.", "‘Daar", "geloven", "wij", "in", "en", "daar", "gaan", "wij", "de", "komende", "jaren", "ook", "substantieel", "in", "investeren.", "Het", "is", "misschien", "gek,", "maar", "niet", "minder", "waar:", "in", "dit", "land", "is", "Talpa", "het", "enige", "grote", "mediabedrijf", "dat", "volledig", "Nederlands", "is.", "Op", "basis", "van", "dat", "feit", "durf", "ik", "te", "beweren", "dat", "wij", "de", "markt", "als", "geen", "ander", "kennen.’", "Dat", "traditionele", "mediabedrijven", "de", "noodzaak", "voelen", "om", "de", "boel", "op", "de", "schop", "te", "nemen,", "zal", "iedereen", "begrijpen.", "Zelfs", "de", "meest", "verstokte", "tv-fan", "weet", "dat", "de", "ommekeer", "al", "lang", "is", "ingezet.", "Lineaire", "televisie,", "waarbij", "de", "passieve", "kijker", "op", "gezette", "tijden", "programma’s", "krijgt", "voorgeschoteld,", "heeft", "zijn", "langste", "tijd", "gehad.", "Wereldspelers", "als", "Netflix,", "Amazon", "Prime", "en", "YouTube", "kapen", "de", "consument", "weg", "met", "hun", "video", "on", "demand-aanbod,", "het", "advertentiegeld", "gaat", "naar", "Facebook", "en", "Google.", "Voor", "een", "commerciële", "partij", "als", "Talpa", "geldt:", "hoe", "minder", "luisteraars", "en", "kijkers,", "hoe", "minder", "adverteerders,", "zodat", "er", "minder", "geld", "is", "voor", "goede", "programma’s,", "waardoor", "er", "nog", "meer", "mensen", "weglopen.", "Een", "neerwaartse", "spiraal", "dus.", "‘Sinds", "vorig", "jaar", "zijn", "de", "kijktijd", "en", "daarmee", "de", "reclame-inkomsten", "echt", "met", "double", "digits", "gedaald’,", "vertelt", "Pim", "Schmitz,", "als", "we", "hem", "spreken", "op", "het", "Talpa-kantoor", "aan", "de", "Familie", "De", "Mollaan", "1", "in", "Hilversum.", "‘Dat", "heeft", "bij", "ons", "het", "gevoel", "van", "urgentie", "flink", "doen", "toenemen.’", "‘Talpa", "2.0’", "roept", "vooral", "vragen", "op.", "Wat", "verzamelt", "De", "Mol", "nu", "precies,", "hoe", "doe", "hij", "dat", "en", "wat", "gebeurt", "er", "vervolgens", "mee?", "En", "houdt", "hij", "zich", "daarbij", "aan", "de", "wetten", "en", "regels", "die", "de", "privacy", "van", "burgers", "moeten", "beschermen?", "Met", "die", "kwesties", "in", "het", "achterhoofd", "keek", "Follow", "the", "Money", "samen", "met", "collega’s", "van", "platform", "voor", "onderzoeksjournalistiek", "Investico", "en", "De", "Groene", "Amsterdammer", "naar", "de", "strategie", "van", "Talpa.", "Daarmee", "neemt", "De", "Mol", "een", "prikkelende", "positie", "in:", "hij", "verkoopt", "zijn", "boodschap", "als", "een", "reddingsboei", "voor", "de", "media-industrie,", "het", "Nederlandse", "antwoord", "op", "Facebook.", "Maar", "waarom", "zouden", "we", "blij", "moeten", "zijn", "met", "een", "Nederlands", "equivalent?", "Waren", "we", "de", "afgelopen", "jaren", "niet", "juist", "huiverig", "geworden", "voor", "advertentiebedrijven", "die", "onze", "data", "vergaren", "en", "zonder", "ons", "medeweten", "die", "informatie", "delen", "met", "derden?", "Het", "leidt", "immers", "tot", "filter", "bubbles,", "nepnieuws,", "commerciële", "nudging", "en", "politieke", "manipulatie.", "Om", "nuttige", "informatie", "te", "kunnen", "destilleren", "uit", "de", "gegevens", "van", "zijn", "klanten,", "heeft", "het", "bedrijf", "een", "machine", "gebouwd", "die", "data", "omzet", "in", "gebruikersprofielen.", "Het", "is", "een", "soort", "schil", "die", "over", "al", "die", "sites,", "programma’s", "en", "apps", "is", "gelegd.", "Die", "machine", "heet", "Talpa", "Connect", "en", "draait", "in", "stilte", "in", "het", "magazijn,", "terwijl", "De", "Mol", "ondertussen", "zijn", "etalage", "herschikt", "en", "in", "de", "media", "reuring", "veroorzaakt", "met", "de", "overname", "van", "StukTV,", "de", "acquisitie", "van", "persbureau", "ANP", "of", "het", "wegroven", "van", "Gordon", "en", "Johan", "Derksen", "bij", "RTL.", "De", "baas", "van", "Schmitz", "kond" ], [ "igde", "de", "stap", "een", "jaar", "geleden", "al", "aan.", "Op", "23", "november", "2017", "presenteerde", "John", "de", "Mol", "in", "het", "Amsterdamse", "DeLaMar", "Theater", "zijn", "nieuwe", "mediabedrijf.", "Talpa", "Network", "is", "de", "culminatie", "van", "jaren", "gestaag", "acquireren", "en", "bouwen", "aan", "een", "onderneming", "waarbinnen", "traditionele", "grenzen", "verdwijnen:", "of", "het", "nu", "radio,", "tv,", "online", "of", "social", "is,", "Talpa", "knoopt", "het", "allemaal", "aan", "elkaar,", "in", "de", "jacht", "op", "het", "nieuwe", "goud:", "data.", "Daarmee", "wil", "de", "invloedrijke", "mediaman", "in", "Nederland", "de", "strijd", "aanbinden", "met", "concurrenten", "als", "Facebook", "en", "Google.", "Maar", "het", "is", "geen", "spel.", "‘In", "die", "trechter", "wordt", "alles", "steeds", "meetbaarder,’", "zegt", "Pim", "Schmitz,", "commissaris", "bij", "Talpa", "Network.", "Volgens", "hem", "geven", "die", "twee", "Engelse", "woorden", "precies", "weer", "wat", "de", "nieuwe", "strategie", "is", "van", "De", "Mols", "mediabedrijf:", "data", "verzamelen", "en", "verrijken.", "‘Met", "full", "funnel", "willen", "we", "de", "consumenten", "24", "uur", "per", "dag,", "zeven", "dagen", "per", "week", "bedienen", "op", "verschillende", "platforms.", "Want", "de", "adverteerder", "vraagt", "dat", "van", "ons.", "Daarom", "willen", "wij", "weten", "wat", "die", "consument", "wil.’", "Schmitz", "noemt", "het", "‘silo’s’,", "grote", "reservoirs", "aan", "persoonsgegevens", "die", "Talpa,", "op", "de", "juiste", "manier", "gecombineerd,", "kan", "gebruiken", "om", "nieuwe", "concepten", "te", "maken", "en", "adverteerders", "beter", "te", "bedienen.", "In", "de", "woorden", "van", "de", "commissaris:", "‘We", "gaan", "alles", "uit", "die", "silo’s", "halen,", "een", "sales", "house", "bouwen,", "een", "one", "stop", "shop.’", "Full", "funnel", "zou", "zomaar", "de", "titel", "van", "een", "nieuw,", "interactief", "spelprogramma", "kunnen", "zijn,", "waarbij", "deelnemers", "moeten", "proberen", "om", "de", "geheimen", "en", "verborgen", "verlangens", "van", "een", "groep", "Bekende", "Nederlanders", "te", "achterhalen,", "die", "steeds", "iets", "meer", "van", "zichzelf", "prijsgeven.", "Hoe?", "Door", "de", "BN’ers", "steeds", "verder", "de", "trechter,", "de", "funnel,", "in", "te", "lokken,", "waaruit", "een", "zo", "accuraat", "mogelijk", "individueel", "profiel", "druppelt.", "John", "de", "Mol,", "hoeder", "van", "het", "Nederlands", "cultuur-tv-erfgoed", "John", "de", "Mol", "tijdens", "de", "presentatie", "van", "de", "plannen", "van", "Talpa", "voor", "SBS", "in", "het", "DeLaMar", "Theater,", "november", "2017.", "©", "ANP", "Levin", "de", "Boer", "en", "Paula", "van", "de", "Meeren", "De", "Mol", "vliegt", "onder", "de", "radar", "Geen", "wonder", "dat", "De", "Mol", "enthousiast", "is.", "Zijn", "bedrijf", "heeft", "naar", "eigen", "zeggen", "inmiddels", "van", "7,5", "miljoen", "Nederlanders", "persoonsgegevens", "verzameld.", "Maar", "heeft", "de", "gebruiker", "van", "Talpa’s", "‘content’", "daar", "ook", "nog", "iets", "over", "te", "zeggen?", "Mensen", "hoeven", "niets", "tegen", "hun", "wil", "te", "doen,", "benadrukte", "De", "Mol", "bij", "Nieuwsuur.", "‘Dus", "moet", "je", "als", "ondernemer", "iets", "bieden", "waardoor", "ze", "het", "wel", "willen,", "ze", "moeten", "er", "iets", "voor", "terugkrijgen,", "en", "ook", "onmiddellijk", "kunnen", "stoppen", "als", "ze", "het", "niet", "meer", "willen.’", "'Als", "een", "consument", "bij", "ons", "komt,", "maken", "we", "een", "afspraak:", "wij", "geven", "jou", "dit,", "jij", "geeft", "ons", "dat'", "Hoe,", "dat", "legt", "Pim", "Schmitz", "graag", "uit.", "‘Wij", "werken", "nu", "met", "een", "single", "sign-on.", "Dat", "is", "eigenlijk", "het", "moment", "dat", "een", "consument", "bij", "ons", "binnenkomt.", "Dan", "maken", "we", "een", "afspraak:", "wij", "geven", "jou", "dit,", "jij", "geeft", "ons", "dat.", "Ben", "je", "tevreden?", "Prima.", "En", "als", "je", "niet", "tevreden", "bent,", "dan", "k" ], [ "un", "je", "dingen", "uitzetten.", "Dat", "is", "het", "punt", "waarop", "je", "als", "consument", "een", "beslissing", "neemt.’", "Het", "zijn", "de", "privacy-", "en", "cookie-statements", "die", "iedere", "online", "dienst", "tegenwoordig", "verplicht", "moet", "voorleggen", "aan", "de", "gebruiker.", "Die", "kan", "daar", "ja", "of", "nee", "tegen", "zeggen.", "Wij", "doen", "dat", "netjes", "volgens", "de", "regels,", "zegt", "de", "Talpa-leiding.", "Om", "te", "achterhalen", "of", "dat", "zo", "is,", "benaderen", "we", "enkele", "tientallen", "(oud-)medewerkers", "en", "mensen", "die", "verbonden", "zijn", "aan", "bedrijven", "die", "hun", "diensten", "leveren", "aan", "De", "Mol.", "De", "meesten", "houden", "de", "boot", "af,", "wijzend", "op", "de", "door", "hen", "getekende", "non-disclosure", "agreements.", "Slechts", "een", "enkeling", "wil", "reageren,", "en", "dan", "alleen", "op", "achtergrondbasis.", "Veel", "informatie", "is", "overigens", "ook", "in", "open", "bronnen", "te", "vinden.", "Zo", "komen", "we", "erachter", "dat", "Talpa", "voor", "muzieksite", "Juke", "gebruikt", "maakt", "van", "de", "tool", "Tealium", "waarmee", "het", "op", "het", "oog", "weinig", "relevante", "informatie", "vastlegt", "als", "in", "hoeverre", "je", "telefoon", "is", "opgeladen.", "Dat", "lijkt", "niet", "in", "lijn", "met", "het", "wettelijk", "vastgelegde", "uitgangspunt", "van", "datacollectie", "by", "design,", "waarbij", "er", "een", "duidelijk", "doel", "moet", "zijn", "waarom", "je", "bepaalde", "gegevens", "verzamelt.", "Een", "verontruste", "jurist", "die", "eerder", "door", "Talpa", "was", "geconsulteerd", "over", "het", "privacybeleid,", "waarschuwde", "het", "bedrijf", "naar", "eigen", "zeggen", "vergeefs.", "‘Ze", "zeiden:", "breek", "je", "mooie", "hoofdje", "daar", "maar", "niet", "over.’", "De", "consultant", "zegt", "dat", "De", "Mol", "slechts", "één", "doel", "heeft:", "zoveel", "mogelijk", "data", "vergaren.", "‘Je", "moet", "goed", "begrijpen", "dat", "dit", "de", "heilige", "graal", "is.", "Hij", "doet", "niets", "nieuws,", "maar", "de", "schaal", "is", "ongekend.’", "Tegelijkertijd", "is", "Talpa", "te", "klein", "om", "door", "privacy-watchers", "te", "worden", "opgemerkt,", "beweert", "deze", "bron.", "‘Terwijl", "grote", "jongens", "als", "Facebook", "en", "Google", "worden", "doodgereguleerd,", "vliegt", "De", "Mol", "onder", "de", "radar", "door.", "Hij", "bevindt", "zich", "in", "een", "blue", "ocean.’", "Alle", "camera-ogen", "op", "de", "bal", "Dat", "laatste", "is", "de", "vraag.", "Dit", "seizoen", "is", "Talpa", "begonnen", "met", "VoetbalTV;", "met", "behulp", "van", "slimme", "camera’s", "en", "jaarlijks", "tachtigduizend", "livestreams", "wil", "De", "Mol", "het", "Nederlandse", "amateurvoetbal", "in", "beeld", "brengen.", "Fans", "en", "spelers", "kunnen", "via", "de", "app", "thuis", "live", "wedstrijden", "volgen,", "de", "hele", "match", "later", "terugkijken,", "hun", "favoriete", "momenten", "delen", "en", "teamgenoten", "taggen.", "Talpa", "sloot", "daarvoor", "een", "deal", "met", "de", "KNVB:", "bondsleden", "geven", "automatisch", "toestemming", "voor", "de", "registratie.", "Bij", "de", "speelvelden", "staat", "een", "informatiebord", "met", "een", "QR-code", "die", "je", "kunt", "scannen", "om", "zo", "meer", "informatie", "te", "krijgen", "over", "het", "gebruik", "van", "de", "beelden.", "Inmiddels", "heeft", "De", "Mol", "een", "minderheidsaandeel", "in", "het", "Tsjechische", "bedrijf", "Camvision,", "dat", "de", "software", "ontwikkelde", "waarmee", "de", "camera’s", "de", "bal", "kunnen", "volgen.", "Kort", "voor", "de", "start", "van", "het", "project", "kreeg", "de", "Autoriteit", "Persoonsgegevens", "(AP)", "vragen", "over", "de", "privacywaarborgen", "van", "VoetbalTV,", "waarop", "de", "toezichthouder", "meldde", "‘in", "gesprek", "te", "gaan’", "met", "de", "voetbalbond.", "Een", "belangrijke", "vraag", "daarbij", "is", "of", "je", "als", "belangenorganisatie", "wel", "toestemming", "kunt", "geven", "namens", "je", "leden", "voor", "het", "maken," ], [ "bewaren", "en", "delen", "van", "beelden.", "Heeft", "een", "speler", "geen", "zin", "gefilmd", "te", "worden?", "Dan", "moet", "hij", "maar", "niet", "gaan", "voetballen", "Roeland", "Stekelenburg,", "initiatiefnemer", "en", "directeur", "van", "VoetbalTV,", "werd", "op", "3", "september", "over", "deze", "kwesties", "geïnterviewd", "in", "de", "podcast", "FC", "Afkicken.", "Hij", "zei", "dat", "zijn", "project", "binnen", "de", "wet", "handelt,", "maar", "gaf", "ook", "toe", "dat", "het", "allemaal", "gevoelig", "ligt.", "‘Het", "Facebook-schandaal", "en", "de", "privacywetgeving", "hebben", "veroorzaakt", "dat", "we", "veel", "meer", "moeten", "werken", "met", "toestemming", "van", "mensen.", "[..]", "We", "werken", "op", "basis", "van", "toestemming", "die", "je", "eerder", "al", "geeft,", "in", "de", "algemene", "voorwaarden", "van", "de", "KNVB.’", "Maar", "wat", "als", "een", "speler", "daar", "geen", "zin", "in", "heeft?", "‘Wij", "gaan", "er", "voorlopig", "vanuit", "dat", "je", "dan", "maar", "niet", "moet", "gaan", "voetballen.", "Dat", "klinkt", "heel", "cru,", "maar", "je", "kunt", "ook", "niet", "voorkomen", "dat", "er", "iemand", "met", "een", "iPhone", "filmt", "en", "dat", "rechtstreeks", "plaatst", "op", "Facebook.’", "Wie", "voetballen", "wil,", "kan", "dus", "eigenlijk", "weinig", "anders", "dan", "toestemming", "geven.", "Hoe", "verhoudt", "dat", "zich", "met", "het", "uitgangspunt", "dat", "de", "individuele", "consument", "beschikt", "over", "zijn", "eigen", "data?", "We", "vroegen", "de", "AP", "om", "commentaar,", "maar", "de", "toezichthouder", "wil", "niet", "reageren", "op", "individuele", "cases.", "Wel", "worden", "we", "ontvangen", "door", "Pauline", "Gras", "en", "Sandra", "Loois,", "twee", "woordvoerders", "die", "‘in", "algemene", "bewoordingen’", "iets", "zeggen", "over", "privacy-issues", "die", "ook", "de", "producten", "van", "Talpa", "raken.", "‘De", "AVG", "(Algemene", "Verordening", "Gegevensbescherming,", "HL)", "is", "bedoeld", "om", "mensen", "weer", "zeggenschap", "te", "geven", "over", "hun", "eigen", "gegevens,’", "benadrukt", "Pauline", "Gras.", "‘Dat", "betekent", "dat", "je", "moet", "weten", "waar", "je", "ja", "tegen", "zegt", "en", "dat", "je", "een", "beeld", "hebt", "van", "wat", "er", "met", "gegevens", "gebeurt.’", "Ook", "zeggen", "de", "woordvoerders", "dat", "bij", "dataverzameling", "‘minimalisatie’", "en", "‘privacy", "by", "design’", "belangrijke", "vereisten", "zijn", "sinds", "de", "AVG", "sinds", "mei", "dit", "jaar", "van", "kracht", "is.", "Je", "moet", "als", "bedrijf", "op", "voorhand", "duidelijk", "maken", "waarvoor", "je", "de", "gegevens", "zult", "gebruiken", "en", "niet", "meer", "bijeenharken", "dan", "noodzakelijk", "is:", "het", "klakkeloos", "vergaren", "van", "gebruikersinformatie", "om", "daar", "later", "naar", "believen", "uit", "te", "putten,", "is", "dus", "niet", "toegestaan.", "Toch", "lijkt", "Talpa", "precies", "dat", "te", "doen.", "Een", "interne", "bron", "vertelde", "ons", "dat", "het", "management", "niet", "goed", "kon", "uitleggen", "wat", "het", "met", "al", "die", "data", "wil", "–", "ook", "al", "vroeg", "hij", "herhaaldelijk", "om", "toelichting.", "De", "opmerking", "van", "Pim", "Schmitz", "dat", "het", "bedrijf", "bezig", "is", "om", "‘silo’s", "te", "vullen’", "met", "data", "wijst", "ook", "niet", "meteen", "op", "datacollectie", "met", "een", "afgebakend", "doel.", "Dat", "lijkt", "ook", "te", "gelden", "voor", "een", "project", "waarin", "Talpa", "sinds", "kort", "participeert", "samen", "met", "de", "Nederlandse", "Organisatie", "voor", "Wetenschappelijk", "Onderzoek", "(NWO).", "In", "die", "joint", "venture", "roept", "het", "mediabedrijf", "wetenschappers", "op", "om", "op", "basis", "van", "geanonimiseerde", "datasets", "uit", "te", "zoeken", "‘welke", "kwantitatieve", "en", "kwalitatieve", "dimensies", "relevant", "en", "bruikbaar", "zijn", "als", "input", "voor", "de", "ontwikkelingen", "van", "gepersonaliseerde", "content.’", "Dat", "zijn", "mooie", "woorden", "v" ], [ "oor", "de", "poging", "om", "te", "achterhalen", "hoe", "je", "de", "kijker", "-", "en", "dus", "de", "adverteerder", "-", "beter", "van", "dienst", "kan", "zijn.", "Of", "dat", "mag,", "is", "volgens", "de", "Autoriteit", "Persoonsgegevens", "nog", "maar", "de", "vraag.", "‘Het", "is", "niet", "zo", "dat", "je", "een", "zo", "groot", "mogelijke", "bak", "met", "gegevens", "mag", "verzamelen", "die", "je", "naar", "believen", "kunt", "inzetten", "voor", "welk", "fijn", "commercieel", "plan", "je", "ook", "bedenkt.’", "Een", "kind", "kan", "geen", "toestemming", "geven", "Zo", "ontstaan", "er", "meer", "vragen", "als", "je", "de", "praktijk", "van", "het", "mediabeleid", "vergelijkt", "met", "de", "met", "de", "mond", "beleden", "zorgvuldigheid.", "Is", "het", "wel", "in", "lijn", "met", "de", "AVG", "wanneer", "de", "Privacy-", "en", "cookie", "policy", "van", "Talpa", "Holding", "NV", "stelt:", "‘Voor", "het", "verwerken", "van", "je", "persoonsgegevens", "maken", "wij", "gebruik", "van", "derde", "partijen", "die", "soms", "de", "beschikking", "krijgen", "over", "jouw", "gegevens.’", "De", "Autoriteit", "Persoonsgegevens", "vindt", "een", "dergelijke", "formulering", "wel", "heel", "summier.", "Woordvoerder", "Sandra", "Loois:", "‘‘Delen", "met", "derden’,", "dat", "kan", "iedereen", "zijn,", "dus", "dan", "weet", "je", "niet", "waar", "je", "ja", "tegen", "zegt", "en", "dat", "garandeert", "dus", "ook", "niks", "over", "je", "zeggenschap.", "Dit", "is", "niet", "in", "overeenstemming", "met", "de", "wet.’", "Een", "ander", "gevoelig", "onderwerp", "in", "veel", "privacy-statements", "is", "het", "verkrijgen", "van", "toestemming", "voor", "kinderen.", "‘Ben", "je", "jonger", "dan", "16", "jaar?", "Dan", "mag", "je", "alleen", "persoonsgegevens", "aan", "Talpa", "verstrekken", "als", "je", "ouders", "of", "wettelijke", "vertegenwoordigers", "deze", "policy", "hebben", "gelezen", "en", "je", "daarvoor", "toestemming", "hebben", "gegeven,’", "meldt", "Talpa.", "‘Met", "inachtneming", "van", "de", "beschikbare", "technologie", "doen", "wij", "redelijke", "inspanningen", "om", "te", "controleren", "of", "je", "ouders", "of", "wettelijke", "vertegenwoordigers", "echt", "toestemming", "hebben", "gegeven.’", "Maar", "hoe", "doe", "je", "dat,", "‘met", "inachtneming", "van", "de", "beschikbare", "technologie’?", "En", "wat", "zijn", "‘redelijke", "inspanningen’?", "Veel", "programma’s", "van", "Talpa", "zijn", "populair", "onder", "minderjarigen.", "‘Een", "kind", "kan", "feitelijk", "niet", "verklaren", "dat", "z'n", "ouders", "toestemming", "hebben", "gegeven’,", "zegt", "de", "AP-woordvoerder.", "Met", "dit", "probleem", "kampen", "meer", "bedrijven.", "Een", "van", "de", "mogelijkheden", "om", "die", "toestemming", "te", "controleren,", "is", "de", "creditcard-methode,", "aangezien", "alleen", "volwassenen", "over", "een", "creditcard", "kunnen", "beschikken.", "Door", "1", "eurocent", "over", "te", "maken,", "kan", "de", "aanbieder", "controleren", "of", "het", "kind", "de", "zegen", "van", "de", "ouders", "heeft.", "Talpa", "heeft", "een", "dergelijke", "toets", "niet", "opgenomen", "in", "zijn", "privacystatement.", "De", "baas", "over", "je", "eigen", "persoonsgegevens", "Mochten", "de", "vragen", "die", "de", "AP", "heeft", "binnengekregen", "naar", "aanleiding", "van", "VoetbalTV", "leiden", "tot", "een", "onderzoek", "naar", "Talpa,", "dan", "kan", "het", "zomaar", "zijn", "dat", "het", "hele", "privacybeleid", "van", "De", "Mols", "bedrijf", "wordt", "doorgelicht.", "De", "AP-woordvoerder:", "‘Als", "je", "denkt", "dat", "je", "recht", "wordt", "geschonden,", "kun", "je", "daarover", "een", "klacht", "indienen.", "We", "kunnen", "dan", "ook", "breder", "kijken:", "is", "het", "privacybeleid", "op", "orde,", "is", "de", "beveiliging", "op", "orde,", "heeft", "de", "organisatie", "voldoende", "organisatorische", "en", "technische", "maatregelen", "genomen", "om", "gegevens", "goed", "te", "beschermen?’", "Bottomline", "bij", "een", "dergelij" ], [ "ke", "toets", "van", "de", "Autoriteit", "Persoonsgegevens", "zal", "zijn", "of", "de", "dataverzameldrift", "van", "Talpa", "sowieso", "wel", "door", "de", "beugel", "kan.", "‘De", "privacywet", "gaat", "ervanuit", "dat", "jij", "de", "baas", "bent", "over", "je", "eigen", "persoonsgegevens.", "Daarvoor", "moet", "je", "voor", "elk", "gegeven", "weten", "waarom", "dat", "specifieke", "stukje", "informatie", "verzameld", "wordt.", "Alleen", "dan", "weet", "je", "waar", "je", "ja", "tegen", "zegt.’", "Ik", "kan", "de", "nieuwe", "strategie", "heel", "goed", "uitleggen", "aan", "de", "consument", "Als", "het", "zo", "ver", "komt,", "zal", "dat", "ongetwijfeld", "leiden", "tot", "juridische", "haarkloverij.", "Pim", "Schmitz", "zegt", "‘absoluut’", "niet", "te", "schrikken", "van", "een", "mogelijke", "controle", "door", "de", "toezichthouder", "naar", "aanleiding", "van", "vragen", "over", "VoetbalTV.", "‘Uiteraard", "hebben", "we", "er", "goed", "over", "nagedacht", "en", "is", "dat", "goed", "geregeld.", "En", "dat", "mensen", "daar", "wat", "van", "vinden", "en", "mogen", "vinden,", "prima.’", "Hij", "neemt", "zichzelf", "wel", "kwalijk", "dat", "Talpa", "zich", "heeft", "laten", "verrassen", "door", "de", "publiciteit", "over", "het", "datavraagstuk.", "‘We", "houden", "ons", "altijd", "aan", "de", "wet.", "Maar", "omdat", "we", "weten", "hoe", "gevoelig", "data", "en", "mediabedrijven", "liggen,", "hadden", "we", "er", "veel", "beter", "op", "moeten", "anticiperen", "door", "van", "tevoren", "duidelijkheid", "te", "verschaffen.’", "Hij", "kan", "de", "nieuwe", "strategie", "van", "Talpa", "heel", "goed", "uitleggen", "aan", "de", "consument,", "meent", "Schmitz.", "‘Als", "jij", "het", "prettig", "vindt", "om", "niet", "te", "worden", "bestookt", "met", "honderd", "advertenties", "per", "uur", "via", "een", "open", "kanaal,", "maar", "jij", "wilt", "heel", "gericht,", "op", "het", "moment", "dat", "jij", "dat", "aangeeft,", "een", "advertentie", "krijgen", "over", "een", "gebied", "dat", "jou", "interesseert,", "dan", "kun", "je", "daarop", "ja", "of", "nee", "zeggen.’", "Plezierige", "bespreking", "met", "de", "Autoriteit", "Persoonsgegevens", "De", "‘contentpropositie", "van", "de", "consument", "verbeteren’", "noemen", "ze", "dat", "in", "het", "cryptische", "marketing", "slang", "van", "Hilversum.", "Simpelweg", "betekent", "het", "dat", "jij", "bepaalt", "wat", "en", "wanneer", "je", "kijkt,", "luistert", "en", "surft.", "Schmitz:", "‘Als", "je", "daar", "ja", "op", "zegt,", "maken", "we", "een", "afspraak:", "dit", "hebben", "we", "van", "u", "nodig,", "dat", "gebruiken", "we", "op", "zo’n", "manier", "en", "daar", "zijn", "we", "heel", "voorzichtig", "mee.", "Dat", "zullen", "we", "niet", "aan", "derden", "verkopen,", "dat", "houden", "we", "voor", "onszelf.", "En", "by", "the", "way,", "als", "u", "het", "niet", "meer", "prettig", "vindt", "of", "u", "bedenkt", "zich,", "nou,", "dan", "halen", "we", "u", "er", "weer", "uit.’", "Talpa-woordvoerder", "Thomas", "Loudon", "laat", "ons", "half", "november", "weten", "dat", "er", "‘inmiddels", "een", "plezierige", "bespreking", "met", "de", "AP", "heeft", "plaatsgevonden", "over", "VoetbalTV’.", "Daarbij", "zouden", "de", "partijen", "achter", "VoetbalTV", "hebben", "uitgelegd", "dat", "ze", "voorzichtig", "met", "persoonsgegevens", "en", "de", "privacy", "van", "de", "gebruikers", "omgaan.", "‘Deze", "toelichting", "was", "op", "dat", "moment", "voldoende", "voor", "de", "AP.’", "Verder", "benadrukt", "Loudon", "dat", "het", "mediabedrijf", "ook", "zorgvuldig", "is", "wanneer", "het", "data", "met", "derden", "deelt.", "‘Talpa", "zal", "de", "data", "van", "haar", "gebruikers", "niet", "los", "verkopen", "of", "verhandelen.’", "Als", "ze", "al", "persoonsgegevens", "delen,", "is", "dat", "volgens", "de", "woordvoerder", "met", "toestemming", "van", "de", "gebruiker.", "Hij", "noemt", "als", "voorbeeld", "deelnemers", "die", "bij", "een", "prijsvraag", "a" ], [ "anvinken", "dat", "ze", "er", "akkoord", "mee", "gaan", "dat", "de", "sponsor", "hun", "e-mailadres", "krijgt.", "Eind", "november", "meldt", "Loudon", "zich", "opnieuw.", "Een", "paar", "dagen", "nadat", "FTM", "en", "Investico/De", "Groene", "Amsterdammer", "hun", "vragen", "en", "punten", "van", "kritiek", "hebben", "voorgelegd", "aan", "het", "mediabedrijf,", "laat", "de", "woordvoerder", "weten", "dat", "het", "privacy", "dashboard", "van", "Talpa", "‘live’", "is", "gegaan.", "Daarin", "kan", "de", "gebruiker", "zelf", "aangeven", "wat", "hij", "wel", "of", "niet", "wil", "dat", "De", "Mol", "met", "derden", "deelt.", "Om", "bij", "dat", "keuzemenu", "uit", "te", "komen,", "dien", "je", "twee", "keer", "door", "te", "klikken,", "waarna", "je", "kunt", "aangeven", "of", "bedrijven", "als", "bijvoorbeeld", "GroupM", "en", "Amobee", "Inc", "gebruik", "mogen", "maken", "van", "jouw", "data.", "John", "de", "Mol", "zelf", "zat", "er", "niet", "over", "in,", "toen", "hij", "vorig", "jaar", "zijn", "nieuwe", "opzet", "presenteerde", "in", "Nieuwsuur.", "Hoe", "zit", "het", "met", "de", "privacyregels,", "wilde", "Twan", "Huys", "weten.", "‘Daar", "gaan", "wij", "ons", "aan", "houden,", "daar", "zorgen", "ze", "in", "Den", "Haag", "wel", "voor,’", "zei", "de", "Talpa-eigenaar.", "Voor", "Den", "Haag", "had", "De", "Mol", "wél", "een", "andere", "boodschap.", "Hij", "stoorde", "zich", "niet", "zozeer", "aan", "de", "macht", "van", "de", "grote", "multinationale", "reclamebedrijven,", "zei", "hij", "tegen", "Huys,", "maar", "veel", "eerder", "aan", "'de", "onmacht", "van", "Nederland,", "aan", "25", "jaar", "falend", "mediabeleid’.", "Talpa", "wil", "dat", "Den", "Haag", "de", "regels", "versoepelt,", "zodat", "het", "veel", "gemakkelijker", "wordt", "om", "te", "expanderen.", "De", "Mediawet", "maakt", "onderscheid", "tussen", "radio,", "tv,", "krant", "en", "online.", "Dat", "onderscheid", "is", "achterhaald,", "beweerde", "De", "Mol", "bij", "Nieuwsuur.", "‘Facebook", "en", "Google", "gaan", "daar", "online", "zo", "overheen", "dat", "je", "niet", "meer", "kunt", "zeggen:", "er", "is", "één", "gesegmenteerde", "reclamemarkt.", "Het", "gaat", "om", "dé", "reclame-euro", "en", "de", "kijker,", "de", "consument.’", "Ik", "lig", "al", "twee", "jaar", "onder", "onderzoek", "of", "we", "in", "radio", "niet", "te", "veel", "marktmacht", "hebben", "Wie", "nu", "een", "monopoliepositie", "dreigt", "te", "verwerven", "in", "één", "van", "die", "gebieden,", "krijgt", "de", "Autoriteit", "Markt", "en", "Consument", "(AMC)", "op", "zijn", "dak.", "Het", "is", "Talpa", "overkomen", "met", "de", "acquisitie", "van", "radiostations.", "‘Ik", "lig", "al", "twee", "jaar", "onder", "onderzoek", "of", "we", "daar", "niet", "te", "veel", "marktmacht", "hebben’,", "verzucht", "Pim", "Schmitz.", "‘Terwijl", "de", "totale", "radiomarkt", "5", "procent", "is", "van", "de", "advertentiemarkt", "in", "Nederland.", "Die", "ontschotting,", "dat", "weghalen,", "zou", "mij", "enorm", "helpen.’", "En", "niet", "alleen", "hem.", "Talpa", "is", "niet", "de", "enige", "met", "expansieplannen.", "In", "Nederland", "snuffelen", "alle", "grote", "mediapartijen", "aan", "elkaar.", "Ze", "zijn", "ook", "allemaal", "bezig,", "al", "dan", "niet", "samen,", "om", "zo", "effectief", "mogelijk", "data", "te", "delven.", "De", "Persgroep,", "Sanoma", "en", "de", "Telegraaf", "Media", "Groep", "proberen", "hun", "klanten", "in", "kaart", "te", "brengen", "in", "hun", "joint", "venture", "NLProfiel.", "De", "Mols", "directe", "concurrent", "RTL", "heeft", "met", "het", "project", "Fan", "Centric", "ook", "de", "bakens", "verzet", "en", "koerst", "af", "op", "dataverzameling.", "Het", "lijken", "voorbodes", "van", "verdergaande", "samenwerking,", "wellicht", "zelfs", "in", "één", "groot", "platform.", "De", "Mol", "hintte", "er", "afgelopen", "voorjaar", "op", "in", "RTL", "Late", "Night.", "‘Ik", "denk", "dat", "Nederland", "te", "klein", "is", "om", "twee", "grote", "televisiegroepen", "te", "hebben", "die", "elkaar", "naar", "het", "leven", "staan.", "Ik", "denk", "dat", "samenwerking", "onvermij" ], [ "delijk", "is,", "maar", "daar", "heb", "je", "twee", "partijen", "voor", "nodig.", "[..]", "Ik", "denk", "dat", "die", "scheidingen", "wegvallen", "en", "dat", "het", "te", "zijner", "tijd", "denkbaar", "is", "dat", "je", "RTL", "en", "SBS", "in", "één", "bedrijf", "ziet", "eindigen.’", "Misplaatst", "Oranjegevoel", "De", "Mol", "als", "redder", "van", "het", "Nederlandse", "culturele", "erfgoed,", "dat", "klinkt", "toch", "raar", "over", "de", "eigenaar", "van", "een", "multinational", "die", "wereldwijd", "miljoenen", "verdient", "met", "absoluut", "on-Nederlandse", "tv-formats", "als", "The", "Voice.", "Schmitz", "schiet", "in", "de", "verdediging", "als", "we", "hem", "aanspreken", "op", "dat", "ons", "inziens", "misplaatste", "Oranjegevoel.", "‘We", "zijn", "gebaat", "bij", "een", "breed", "en", "pluriform", "aanbod", "van", "Nederlandse", "content", "en", "ik", "denk", "dat", "dat", "aanbod", "enorm", "verschraalt", "op", "het", "moment", "dat", "je", "niet", "een", "sterk", "lokaal", "alternatief", "kan", "bieden.’", "Dat", "zijn", "mooie", "woorden", "die", "het", "vast", "goed", "doen", "in", "Den", "Haag,", "maar", "eerder", "schroomde", "De", "Mol", "ook", "niet", "om", "zijn", "bedrijven", "aan", "buitenlandse", "partijen", "te", "verkopen:", "Endemol", "ging", "in", "2007", "naar", "het", "Spaanse", "Telefónica", "en", "in", "2015", "verkocht", "hij", "zijn", "productietak", "Talpa", "Media", "aan", "de", "Britse", "commerciële", "omroep", "ITV.", "Meerdere", "mensen", "die", "we", "spreken,", "menen", "dan", "ook", "dat", "Talpa", "met", "zijn", "datastrategie", "vooral", "bezig", "is", "om", "zichzelf", "in", "de", "etalage", "te", "plaatsen,", "om", "de", "belangrijkste", "speler", "te", "worden", "in", "de", "nichemarkt", "die", "Nederland", "is", "op", "mondiale", "schaal.", "Dan", "zou", "het", "zomaar", "kunnen", "dat", "binnen", "afzienbare", "tijd", "een", "wereldspeler", "als", "Netflix", "of", "Amazon", "zich", "meldt", "in", "Naarden.", "Het", "gaat", "om", "het", "creëren", "van", "waarde,", "niet", "om", "wie", "de", "houder", "van", "die", "waarde", "is", "‘Ik", "weet", "waar", "jullie", "naartoe", "willen’,", "zegt", "Schmitz.", "‘Maar", "het", "feit", "dat", "je", "een", "lokaal", "bedrijf", "bent", "en", "een", "strategie", "hebt", "ontwikkeld", "om", "je", "te", "positioneren", "versus", "de", "Netflixen", "van", "deze", "wereld", "op", "basis", "van", "nogmaals", "die", "lokale", "strategie,", "zegt", "uiteindelijk", "niks", "over", "wie", "de", "ultieme", "aandeelhouder", "is.’", "Dat", "kan", "volgens", "de", "recent", "vertrokken", "CEO", "net", "zo", "goed", "met", "een", "Finse", "aandeelhouder", "of", "een", "Duitse", "eigenaar.", "‘Het", "gaat", "om", "het", "creëren", "van", "de", "waarde", "en", "niet", "om", "wie", "de", "houder", "van", "die", "waarde", "is.’", "Vooralsnog", "is", "die", "houder", "John", "de", "Mol", "en", "pimpt", "hij", "zijn", "waarde", "met", "het", "uitputtend", "volgen", "van", "zijn", "klanten." ] ]
[ [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "fr", "fr", "es", "es", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "it", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "fr", "fr", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "fr", "fr", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "es", "es", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "fr", "fr", "fr", "fr", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl" ] ]
[ [ [ "Met", "Talpa", "Connect", "koppelt", "John", "de", "Mol", "zoveel", "mogelijk", "gebruikersdata", "aan", "elkaar.", "Op", "die", "manier", "wil", "hij", "concurreren", "met", "Facebook", "en", "Google", "en", "de", "waarde", "van", "zijn", "bedrijf", "opdrijven.", "De", "bedenker", "van", "Big", "Brother", "gaat", "heel", "ver", "in", "het", "profileren", "van", "zijn", "klanten,", "blijkt", "uit", "onderzoek", "van", "Follow" ], [ "Investico.", "Dat", "staat", "op", "gespannen", "voet", "met", "de", "privacywetgeving.", "‘Heeft", "een", "speler", "geen", "zin", "om", "gefilmd", "te", "worden", "voor", "VoetbalTV?", "Dan", "moet", "hij", "maar", "niet", "gaan", "voetballen.’", "Het", "is", "een", "honingpot", "voor", "adverteerders.", "Hoe", "meer", "de", "aanbieder", "van", "wervende", "boodschappen", "van", "je", "weet,", "hoe", "beter", "hij", "je", "behoeften", "kan", "bevredigen", "en", "hoe", "groter", "de", "kans", "dat", "het", "tot", "een", "transactie", "komt.", "Voor", "Talpa", "snijdt", "het", "mes", "aan", "twee", "kanten:", "met", "diezelfde", "data", "kan", "het", "mediabedrijf", "weer", "nieuwe", "programmaformats", "ontwikkelen", "die", "zijn", "toegesneden", "op", "de", "voorkeuren", "van", "een", "specifieke", "groep", "kijkers", "of", "luisteraars,", "waarbinnen", "ruimte", "is", "voor", "product", "placement", "(het", "aan", "de", "man", "brengen", "van", "producten", "in", "programma’s", "zelf)", "en", "andere", "advertentiemogelijkheden.", "Het", "is", "de", "belangrijkste", "reden", "dat", "De", "Mol", "een", "samenwerking", "is", "aangegaan", "met", "telecombedrijf", "KPN.", "Met", "addressable", "tv", "wil", "Talpa", "de", "abonnees", "van", "het", "telecombedrijf", "tv-reclames", "voorschotelen", "die", "hen", "op", "het", "lijf", "zijn", "geschreven.", "Schmitz:", "‘Zorgen", "dat", "de", "gegevens", "die", "we", "van", "jou", "hebben", "in", "het", "juiste", "bakje", "terechtkomen", "is", "het", "allermoeilijkste.", "Dus", "dat", "we", "gewoon", "een", "sterk", "profiel", "van", "je", "kunnen", "bouwen.’", "Als", "dat", "lukt,", "kan", "het", "zijn", "dat", "je", "ineens", "in", "het", "systeem", "staat", "als", "een", "33-jarige,", "alleenstaande", "man", "uit", "Nijmegen,", "die", "aan", "karpervissen", "doet,", "een", "voorkeur", "heeft", "voor", "indierock,", "graag", "op", "vakantie", "gaat", "naar", "Scandinavië", "en", "online", "jaagt", "op", "limited", "editions", "van", "Gola-sneakers.", "Dan", "ben", "je", "gefunneld", "door", "John", "de", "Mol.", "Vervolgens", "hebben", "de", "programmeurs", "van", "Talpa", "daar", "zelf", "een", "laag", "overheen", "gelegd,", "die", "ze", "Talpa", "Connect", "noemen,", "of", "ook", "wel", "Smart", "Data", "Platform.", "Hun", "algoritmen", "maken", "op", "basis", "van", "een", "selectie", "uit", "al", "die", "verrijkte,", "gekoppelde", "en", "gerangschikte", "gegevens", "een", "zo", "concreet", "mogelijk", "profiel", "van", "de", "gebruiker.", "Niet", "alle", "data", "worden", "overigens", "per", "se", "doorgezet", "naar", "deze", "‘slimme", "laag’.", "Volgens", "Talpa", "gebruikt", "het", "bedrijf", "een", "filter", "dat", "‘bijzondere", "en", "gevoelige", "persoonsgegevens’", "eruit", "haalt.", "Dan", "kan", "het", "zijn", "dat", "als", "jij", "je", "bij", "Net5", "aanmeldt,", "je", "dat", "dankzij", "inlogsysteembouwer", "Gigya", "ook", "automatisch", "doet", "bij", "538,", "Utopia", "en", "Piets", "Weerbericht.", "Zo", "zijn", "er", "veel", "meer", "diensten", "waar", "Talpa", "gebruik", "van", "maakt,", "met", "namen", "als", "Tealium,", "GoodData", "en", "Relay42,", "die", "er", "voor", "zorgen", "dat", "de", "data", "van", "kijkers,", "luisteraars", "en", "gebruikers", "op", "de", "juiste", "plek", "terechtkomen,", "dat", "betalingssystemen", "en", "players", "gestandaardiseerd", "zijn,", "dat", "advertenties", "overal", "kunnen", "worden", "getoond.", "Als", "je", "al", "die", "Emesa-gegevens", "optelt", "bij", "de", "informatie", "van", "alle", "andere", "Talpa-gebruikers", "krijg", "je", "een", "idee", "van", "he" ] ], [ [ "t", "datareservoir", "dat", "het", "mediabedrijf", "laat", "vollopen.", "Daarna", "is", "het", "zaak", "er", "waarde", "aan", "toe", "te", "kennen", "door", "de", "informatie", "met", "elkaar", "te", "verbinden.", "Om", "voor", "die", "aansluiting", "te", "zorgen", "heeft", "De", "Mol", "verschillende", "softwarepakketten", "gekocht", "bij", "evenzoveel", "techbedrijven,", "modules", "die", "Talpa", "kan", "inpluggen", "bij", "al", "zijn", "producten.", "Platform", "Emesa", "levert", "zijn", "eigen", "‘databerg’,", "gedestilleerd", "uit", "vijf", "miljoen", "accounts", "en", "jaarlijks", "honderdduizenden", "transacties", "op", "VakantieVeilingen,", "TicketScout", "en", "ActievandeDag.", "Daar", "kan", "van", "alles", "uitrollen:", "je", "favoriete", "reisbestemmingen,", "welk", "soort", "concerten", "en", "voorstellingen", "je", "graag", "bezoekt,", "welke", "kortingsproducten", "je", "voorkeur", "hebben.", "‘Verschrikkelijk", "waardevolle", "informatie,’", "noemt", "Pim", "Schmitz", "dat.", "‘Het", "gaat", "om", "de", "intent.", "Als", "iemand", "zeven", "keer", "op", "een", "messenset", "biedt,", "zal", "hij", "koken", "misschien", "wel", "leuk", "vinden.’", "Hij", "vergelijkt", "het", "met", "mensen", "die", "op", "Google", "de", "vraag", "stellen", "wat", "de", "beste", "hypotheekverstrekker", "is.", "‘Dan", "krijg", "je", "een", "week", "lang", "banners", "en", "advertenties", "van", "banken.", "Dát", "is", "intent.’", "Aan", "al", "die", "producten", "hangen", "websites", "en", "apps,", "waarmee", "de", "Talpa-klant", "zijn", "favoriete", "programma’s", "kan", "volgen", "en", "terugkijken,", "online", "kan", "meespelen", "en", "met", "gelijkgezinden", "kan", "chatten", "in", "communities.", "Als", "je", "gebruik", "wilt", "maken", "van", "die", "diensten,", "vraagt", "Talpa", "je", "een", "profiel", "aan", "te", "maken,", "de", "eerste", "stap", "op", "weg", "naar", "de", "‘volledige", "trechter’.", "Vanaf", "dat", "moment", "ben", "je", "ingelogd", "en", "deelt", "je", "virtuele", "identiteit", "data", "met", "Talpa.", "Dat", "kunnen", "je", "sportprestaties", "bij", "VoetbalTV", "zijn", "of", "je", "muziekvoorkeuren", "bij", "Juke", "en", "Radio", "538.", "Bij", "die", "laatste", "kun", "je", "via", "de", "site", "overigens", "ook", "heel", "andere", "informatie", "kwijt,", "in", "enquêtes", "met", "vragen", "als:", "Wat", "doe", "je", "het", "liefst?", "Hoe", "rijk", "ben", "je?", "En:", "ben", "je", "een", "beest", "in", "bed?", "Die", "zogenaamde", "formats", "vormen", "nog", "steeds", "de", "basis", "van", "zijn", "bedrijf;", "de", "spelletjes,", "quizzen,", "shows", "en", "realityprogamma’s", "waarmee", "Talpa", "klanten", "als", "RTL", "bedient", "en", "natuurlijk", "eigen", "zenders", "als", "SBS6,", "Net5", "en", "Veronica", "en", "radiostations,", "waaronder", "538", "en", "Sky", "Radio.", "Daarnaast", "heeft", "De", "Mol", "nu", "met", "Juke", "nu", "ook", "een", "eigen", "muziekstreamingservice", "à", "la", "Spotify", "en", "sinds", "de", "overname", "van", "Emesa", "een", "eigen", "e-commerce", "platform,", "een", "lokale", "variant", "op", "Amazon.", "Via", "al", "die", "kanalen", "bereikt", "Talpa", "naar", "eigen", "zeggen", "wekelijks", "zo’n", "13", "miljoen", "Nederlanders.", "Wij", "zijn", "er", "voor", "de", "Nederlander,", "luidt", "de", "boodschap", "van", "De", "Mol.", "Daarom", "heeft", "hij", "Talpa", "Connect", "gebouwd", "en", "daarom", "ook", "heeft", "hij", "vorige", "jaar", "e-commerce", "platform", "Emesa", "ingelijfd,", "eigenaar", "van", "sites", "als", "VakantieVeilingen.nl.", "‘Daar", "zitten", "vijf", "miljoen", "klanten,", "waarvan", "ook", "bekend", "is", "wie", "ze", "zijn,", "wat", "ze", "gedaan", "hebben,", "gekocht", "hebben,", "en", "dat", "is", "hele", "belangrijke", "informatie,’", "benadrukte", "De", "Mol", "’s", "avonds", "bij", "Nieuwsuur.", "Met", "al", "die", "vergaarde", "kennis", "kan", "hij", "zijn", "landgenoten", "bedienen", "met", "het", "allerbeste", "amusement", "van", "eigen", "bodem.", "Met", "Talpa", "Network", "wil", "De", "Mol", "die", "neergang", "stoppen.", "‘" ] ], [ [ "Met", "dit", "lokale", "netwerk", "zijn", "wij", "waar", "en", "wanneer", "dat", "het", "beste", "uitkomt", "voor", "de", "consument,’", "zei", "hij", "eind", "vorig", "jaar", "op", "het", "podium", "van", "DeLaMar.", "‘Daar", "geloven", "wij", "in", "en", "daar", "gaan", "wij", "de", "komende", "jaren", "ook", "substantieel", "in", "investeren.", "Het", "is", "misschien", "gek,", "maar", "niet", "minder", "waar:", "in", "dit", "land", "is", "Talpa", "het", "enige", "grote", "mediabedrijf", "dat", "volledig", "Nederlands", "is.", "Op", "basis", "van", "dat", "feit", "durf", "ik", "te", "beweren", "dat", "wij", "de", "markt", "als", "geen", "ander", "kennen.’", "Dat", "traditionele", "mediabedrijven", "de", "noodzaak", "voelen", "om", "de", "boel", "op", "de", "schop", "te", "nemen,", "zal", "iedereen", "begrijpen.", "Zelfs", "de", "meest", "verstokte", "tv-fan", "weet", "dat", "de", "ommekeer", "al", "lang", "is", "ingezet.", "Lineaire", "televisie,", "waarbij", "de", "passieve", "kijker", "op", "gezette", "tijden", "programma’s", "krijgt", "voorgeschoteld,", "heeft", "zijn", "langste", "tijd", "gehad.", "Wereldspelers", "als" ], [ "YouTube", "kapen", "de", "consument", "weg", "met", "hun", "video", "on", "demand-aanbod,", "het", "advertentiegeld", "gaat", "naar", "Facebook", "en", "Google.", "Voor", "een", "commerciële", "partij", "als", "Talpa", "geldt:", "hoe", "minder", "luisteraars", "en", "kijkers,", "hoe", "minder", "adverteerders,", "zodat", "er", "minder", "geld", "is", "voor", "goede", "programma’s,", "waardoor", "er", "nog", "meer", "mensen", "weglopen.", "Een", "neerwaartse", "spiraal", "dus.", "‘Sinds", "vorig", "jaar", "zijn", "de", "kijktijd", "en", "daarmee", "de", "reclame-inkomsten", "echt", "met", "double", "digits", "gedaald’,", "vertelt", "Pim", "Schmitz,", "als", "we", "hem", "spreken", "op", "het", "Talpa-kantoor", "aan", "de", "Familie", "De", "Mollaan", "1", "in", "Hilversum.", "‘Dat", "heeft", "bij", "ons", "het", "gevoel", "van", "urgentie", "flink", "doen", "toenemen.’", "‘Talpa", "2.0’", "roept", "vooral", "vragen", "op.", "Wat", "verzamelt", "De", "Mol", "nu", "precies,", "hoe", "doe", "hij", "dat", "en", "wat", "gebeurt", "er", "vervolgens", "mee?", "En", "houdt", "hij", "zich", "daarbij", "aan", "de", "wetten", "en", "regels", "die", "de", "privacy", "van", "burgers", "moeten", "beschermen?", "Met", "die", "kwesties", "in", "het", "achterhoofd", "keek" ], [ "met", "collega’s", "van", "platform", "voor", "onderzoeksjournalistiek", "Investico", "en", "De", "Groene", "Amsterdammer", "naar", "de", "strategie", "van", "Talpa.", "Daarmee", "neemt", "De", "Mol", "een", "prikkelende", "positie", "in:", "hij", "verkoopt", "zijn", "boodschap", "als", "een", "reddingsboei", "voor", "de", "media-industrie,", "het", "Nederlandse", "antwoord", "op", "Facebook.", "Maar", "waarom", "zouden", "we", "blij", "moeten", "zijn", "met", "een", "Nederlands", "equivalent?", "Waren", "we", "de", "afgelopen", "jaren", "niet", "juist", "huiverig", "geworden", "voor", "advertentiebedrijven", "die", "onze", "data", "vergaren", "en", "zonder", "ons", "medeweten", "die", "informatie", "delen", "met", "derden?", "Het", "leidt", "immers", "tot", "filter", "bubbles,", "nepnieuws,", "commerciële", "nudging", "en", "politieke", "manipulatie.", "Om", "nuttige", "informatie", "te", "kunnen", "destilleren", "uit", "de", "gegevens", "van", "zijn", "klanten,", "heeft", "het", "bedrijf", "een", "machine", "gebouwd", "die", "data", "omzet", "in", "gebruikersprofielen.", "Het", "is", "een", "soort", "schil" ], [ "die", "over", "al", "die", "sites,", "programma’s", "en", "apps", "is", "gelegd.", "Die", "machine", "heet", "Talpa", "Connect" ], [ "en", "draait", "in", "stilte", "in", "het", "magazijn,", "terwijl", "De", "Mol", "ondertussen", "zijn", "etalage", "herschikt", "en", "in", "de", "media", "reuring", "veroorzaakt", "met", "de", "overname", "van", "StukTV,", "de", "acquisitie", "van", "persbureau", "ANP", "of", "het", "wegroven", "van", "Gordon", "en", "Johan", "Derksen", "bij", "RTL.", "De", "baas", "van", "Schmitz", "kond" ] ], [ [ "igde", "de", "stap", "een", "jaar", "geleden", "al", "aan.", "Op", "23", "november", "2017", "presenteerde", "John", "de", "Mol", "in", "het", "Amsterdamse", "DeLaMar", "Theater", "zijn", "nieuwe", "mediabedrijf.", "Talpa", "Network", "is", "de", "culminatie", "van", "jaren", "gestaag", "acquireren", "en", "bouwen", "aan", "een", "onderneming", "waarbinnen", "traditionele", "grenzen", "verdwijnen:", "of", "het", "nu", "radio,", "tv,", "online" ], [ "is,", "Talpa", "knoopt", "het", "allemaal", "aan", "elkaar,", "in", "de", "jacht", "op", "het", "nieuwe", "goud:", "data.", "Daarmee", "wil", "de", "invloedrijke", "mediaman", "in", "Nederland", "de", "strijd", "aanbinden", "met", "concurrenten", "als", "Facebook", "en", "Google.", "Maar", "het", "is", "geen", "spel.", "‘In", "die", "trechter", "wordt", "alles", "steeds", "meetbaarder,’", "zegt", "Pim", "Schmitz,", "commissaris", "bij", "Talpa", "Network.", "Volgens", "hem", "geven", "die", "twee", "Engelse", "woorden", "precies", "weer", "wat", "de", "nieuwe", "strategie", "is", "van", "De", "Mols", "mediabedrijf:", "data", "verzamelen", "en", "verrijken.", "‘Met", "full", "funnel", "willen", "we", "de", "consumenten", "24", "uur", "per", "dag,", "zeven", "dagen", "per", "week", "bedienen", "op", "verschillende", "platforms.", "Want", "de", "adverteerder", "vraagt", "dat", "van", "ons.", "Daarom", "willen", "wij", "weten", "wat", "die", "consument", "wil.’", "Schmitz", "noemt", "het", "‘silo’s’,", "grote", "reservoirs", "aan", "persoonsgegevens", "die", "Talpa,", "op", "de", "juiste", "manier", "gecombineerd,", "kan", "gebruiken", "om", "nieuwe", "concepten", "te", "maken", "en", "adverteerders", "beter", "te", "bedienen.", "In", "de", "woorden", "van", "de", "commissaris:", "‘We", "gaan", "alles", "uit", "die", "silo’s", "halen,", "een", "sales", "house", "bouwen,", "een", "one", "stop", "shop.’", "Full", "funnel", "zou", "zomaar", "de", "titel", "van", "een", "nieuw,", "interactief", "spelprogramma", "kunnen", "zijn,", "waarbij", "deelnemers", "moeten", "proberen", "om", "de", "geheimen", "en", "verborgen", "verlangens", "van", "een", "groep", "Bekende", "Nederlanders", "te", "achterhalen,", "die", "steeds", "iets", "meer", "van", "zichzelf", "prijsgeven.", "Hoe?", "Door", "de", "BN’ers", "steeds", "verder", "de", "trechter,", "de", "funnel,", "in", "te", "lokken,", "waaruit", "een", "zo", "accuraat", "mogelijk", "individueel", "profiel", "druppelt.", "John", "de", "Mol,", "hoeder", "van", "het", "Nederlands", "cultuur-tv-erfgoed", "John", "de", "Mol", "tijdens", "de", "presentatie", "van", "de", "plannen", "van", "Talpa", "voor", "SBS", "in", "het", "DeLaMar", "Theater," ], [ "Levin", "de", "Boer", "en", "Paula", "van", "de", "Meeren", "De", "Mol", "vliegt", "onder", "de", "radar", "Geen", "wonder", "dat", "De", "Mol", "enthousiast", "is.", "Zijn", "bedrijf", "heeft", "naar", "eigen", "zeggen", "inmiddels", "van", "7,5", "miljoen", "Nederlanders", "persoonsgegevens", "verzameld.", "Maar", "heeft", "de", "gebruiker", "van", "Talpa’s", "‘content’", "daar", "ook", "nog", "iets", "over", "te", "zeggen?", "Mensen", "hoeven", "niets", "tegen", "hun", "wil", "te", "doen,", "benadrukte", "De", "Mol", "bij", "Nieuwsuur.", "‘Dus", "moet", "je", "als", "ondernemer", "iets", "bieden", "waardoor", "ze", "het", "wel", "willen,", "ze", "moeten", "er", "iets", "voor", "terugkrijgen,", "en", "ook", "onmiddellijk", "kunnen", "stoppen", "als", "ze", "het", "niet", "meer", "willen.’", "'Als", "een", "consument", "bij", "ons", "komt,", "maken", "we", "een", "afspraak:", "wij", "geven", "jou", "dit,", "jij", "geeft", "ons", "dat'", "Hoe,", "dat", "legt", "Pim", "Schmitz", "graag", "uit.", "‘Wij", "werken", "nu", "met", "een", "single", "sign-on.", "Dat", "is", "eigenlijk", "het", "moment", "dat", "een", "consument", "bij", "ons", "binnenkomt.", "Dan", "maken", "we", "een", "afspraak:", "wij", "geven", "jou", "dit,", "jij", "geeft", "ons", "dat.", "Ben", "je", "tevreden?", "Prima.", "En", "als", "je", "niet", "tevreden", "bent,", "dan", "k" ] ], [ [ "un", "je", "dingen", "uitzetten.", "Dat", "is", "het", "punt", "waarop", "je", "als", "consument", "een", "beslissing", "neemt.’", "Het", "zijn", "de", "privacy-", "en", "cookie-statements" ], [ "dienst", "tegenwoordig", "verplicht", "moet", "voorleggen", "aan", "de", "gebruiker.", "Die", "kan", "daar", "ja", "of", "nee", "tegen", "zeggen.", "Wij", "doen", "dat", "netjes", "volgens", "de", "regels,", "zegt", "de", "Talpa-leiding.", "Om", "te", "achterhalen", "of", "dat", "zo", "is,", "benaderen", "we", "enkele", "tientallen", "(oud-)medewerkers", "en", "mensen", "die", "verbonden", "zijn", "aan", "bedrijven", "die", "hun", "diensten", "leveren", "aan", "De", "Mol.", "De", "meesten", "houden", "de", "boot", "af,", "wijzend", "op", "de", "door", "hen", "getekende", "non-disclosure", "agreements.", "Slechts", "een", "enkeling", "wil", "reageren,", "en", "dan", "alleen", "op", "achtergrondbasis.", "Veel", "informatie", "is", "overigens", "ook", "in", "open", "bronnen", "te", "vinden.", "Zo", "komen", "we", "erachter", "dat", "Talpa", "voor", "muzieksite", "Juke", "gebruikt", "maakt", "van", "de", "tool", "Tealium", "waarmee", "het", "op", "het", "oog", "weinig", "relevante", "informatie", "vastlegt", "als", "in", "hoeverre", "je", "telefoon", "is", "opgeladen.", "Dat", "lijkt", "niet", "in", "lijn", "met", "het", "wettelijk", "vastgelegde", "uitgangspunt", "van", "datacollectie", "by", "design,", "waarbij", "er", "een", "duidelijk", "doel", "moet", "zijn", "waarom", "je", "bepaalde", "gegevens", "verzamelt.", "Een", "verontruste", "jurist", "die", "eerder", "door", "Talpa", "was", "geconsulteerd", "over", "het", "privacybeleid,", "waarschuwde", "het", "bedrijf", "naar", "eigen", "zeggen", "vergeefs.", "‘Ze", "zeiden:", "breek", "je", "mooie", "hoofdje", "daar", "maar", "niet", "over.’", "De", "consultant", "zegt", "dat", "De", "Mol", "slechts", "één", "doel", "heeft:", "zoveel", "mogelijk", "data", "vergaren.", "‘Je", "moet", "goed", "begrijpen", "dat", "dit", "de", "heilige", "graal", "is.", "Hij", "doet", "niets", "nieuws,", "maar", "de", "schaal", "is", "ongekend.’", "Tegelijkertijd", "is", "Talpa", "te", "klein", "om", "door", "privacy-watchers", "te", "worden", "opgemerkt,", "beweert", "deze", "bron.", "‘Terwijl", "grote", "jongens", "als", "Facebook", "en", "Google", "worden", "doodgereguleerd,", "vliegt", "De", "Mol", "onder", "de", "radar", "door.", "Hij", "bevindt", "zich", "in", "een", "blue", "ocean.’", "Alle", "camera-ogen", "op", "de", "bal", "Dat", "laatste", "is", "de", "vraag.", "Dit", "seizoen", "is", "Talpa", "begonnen", "met", "VoetbalTV;", "met", "behulp", "van", "slimme", "camera’s", "en", "jaarlijks", "tachtigduizend", "livestreams", "wil", "De", "Mol", "het", "Nederlandse", "amateurvoetbal", "in", "beeld", "brengen.", "Fans", "en", "spelers", "kunnen", "via", "de", "app", "thuis", "live", "wedstrijden", "volgen,", "de", "hele", "match", "later", "terugkijken,", "hun", "favoriete", "momenten", "delen", "en", "teamgenoten", "taggen.", "Talpa", "sloot", "daarvoor", "een", "deal", "met", "de", "KNVB:", "bondsleden", "geven", "automatisch", "toestemming", "voor", "de", "registratie.", "Bij", "de", "speelvelden", "staat", "een", "informatiebord", "met", "een", "QR-code", "die", "je", "kunt", "scannen", "om", "zo", "meer", "informatie", "te", "krijgen", "over", "het", "gebruik", "van", "de", "beelden.", "Inmiddels", "heeft", "De", "Mol", "een", "minderheidsaandeel", "in", "het", "Tsjechische", "bedrijf", "Camvision,", "dat", "de", "software", "ontwikkelde", "waarmee", "de", "camera’s", "de", "bal", "kunnen", "volgen.", "Kort", "voor", "de", "start", "van", "het", "project", "kreeg", "de", "Autoriteit", "Persoonsgegevens", "(AP)", "vragen", "over", "de", "privacywaarborgen", "van", "VoetbalTV,", "waarop", "de", "toezichthouder", "meldde", "‘in", "gesprek", "te", "gaan’", "met", "de", "voetbalbond.", "Een", "belangrijke", "vraag", "daarbij", "is", "of", "je", "als", "belangenorganisatie", "wel", "toestemming", "kunt", "geven", "namens", "je", "leden", "voor", "het", "maken," ] ], [ [ "bewaren", "en", "delen", "van", "beelden.", "Heeft", "een", "speler", "geen", "zin", "gefilmd", "te", "worden?", "Dan", "moet", "hij", "maar", "niet", "gaan", "voetballen", "Roeland", "Stekelenburg,", "initiatiefnemer", "en", "directeur", "van", "VoetbalTV,", "werd", "op", "3", "september", "over", "deze", "kwesties", "geïnterviewd", "in", "de", "podcast", "FC", "Afkicken.", "Hij", "zei", "dat", "zijn", "project", "binnen", "de", "wet", "handelt,", "maar", "gaf", "ook", "toe", "dat", "het", "allemaal", "gevoelig", "ligt.", "‘Het", "Facebook-schandaal", "en", "de", "privacywetgeving", "hebben", "veroorzaakt", "dat", "we", "veel", "meer", "moeten", "werken", "met", "toestemming", "van", "mensen.", "[..]", "We", "werken", "op", "basis", "van", "toestemming", "die", "je", "eerder", "al", "geeft,", "in", "de", "algemene", "voorwaarden", "van", "de", "KNVB.’", "Maar", "wat", "als", "een", "speler", "daar", "geen", "zin", "in", "heeft?", "‘Wij", "gaan", "er", "voorlopig", "vanuit", "dat", "je", "dan", "maar", "niet", "moet", "gaan", "voetballen.", "Dat", "klinkt", "heel", "cru,", "maar", "je", "kunt", "ook", "niet", "voorkomen", "dat", "er", "iemand", "met", "een", "iPhone", "filmt", "en", "dat", "rechtstreeks", "plaatst", "op", "Facebook.’", "Wie", "voetballen", "wil,", "kan", "dus", "eigenlijk", "weinig", "anders", "dan", "toestemming", "geven.", "Hoe", "verhoudt", "dat", "zich", "met", "het", "uitgangspunt", "dat", "de", "individuele", "consument", "beschikt", "over", "zijn", "eigen", "data?", "We", "vroegen", "de", "AP", "om", "commentaar,", "maar", "de", "toezichthouder", "wil", "niet", "reageren", "op", "individuele", "cases.", "Wel", "worden", "we", "ontvangen", "door", "Pauline", "Gras", "en", "Sandra", "Loois,", "twee", "woordvoerders", "die", "‘in", "algemene", "bewoordingen’", "iets", "zeggen", "over", "privacy-issues", "die", "ook", "de", "producten", "van", "Talpa", "raken.", "‘De", "AVG", "(Algemene", "Verordening", "Gegevensbescherming,", "HL)", "is", "bedoeld", "om", "mensen", "weer", "zeggenschap", "te", "geven", "over", "hun", "eigen", "gegevens,’", "benadrukt", "Pauline", "Gras.", "‘Dat", "betekent", "dat", "je", "moet", "weten", "waar", "je", "ja", "tegen", "zegt", "en", "dat", "je", "een", "beeld", "hebt", "van", "wat", "er", "met", "gegevens", "gebeurt.’", "Ook", "zeggen", "de", "woordvoerders", "dat", "bij", "dataverzameling", "‘minimalisatie’", "en", "‘privacy", "by", "design’", "belangrijke", "vereisten", "zijn", "sinds", "de", "AVG", "sinds", "mei", "dit", "jaar", "van", "kracht", "is.", "Je", "moet", "als", "bedrijf", "op", "voorhand", "duidelijk", "maken", "waarvoor", "je", "de", "gegevens", "zult", "gebruiken", "en", "niet", "meer", "bijeenharken", "dan", "noodzakelijk", "is:", "het", "klakkeloos", "vergaren", "van", "gebruikersinformatie", "om", "daar", "later", "naar", "believen", "uit", "te", "putten,", "is", "dus", "niet", "toegestaan.", "Toch", "lijkt", "Talpa", "precies", "dat", "te", "doen.", "Een", "interne", "bron", "vertelde", "ons", "dat", "het", "management", "niet", "goed", "kon", "uitleggen", "wat", "het", "met", "al", "die", "data", "wil", "–", "ook", "al", "vroeg", "hij", "herhaaldelijk", "om", "toelichting.", "De", "opmerking", "van", "Pim", "Schmitz", "dat", "het", "bedrijf", "bezig", "is", "om", "‘silo’s", "te", "vullen’", "met", "data", "wijst", "ook", "niet", "meteen", "op", "datacollectie", "met", "een", "afgebakend", "doel.", "Dat", "lijkt", "ook", "te", "gelden", "voor", "een", "project", "waarin", "Talpa", "sinds", "kort", "participeert", "samen", "met", "de", "Nederlandse", "Organisatie", "voor", "Wetenschappelijk", "Onderzoek", "(NWO).", "In", "die", "joint", "venture", "roept", "het", "mediabedrijf", "wetenschappers", "op", "om", "op", "basis", "van", "geanonimiseerde", "datasets", "uit", "te", "zoeken", "‘welke", "kwantitatieve", "en", "kwalitatieve", "dimensies", "relevant", "en", "bruikbaar", "zijn", "als", "input", "voor", "de", "ontwikkelingen", "van", "gepersonaliseerde", "content.’", "Dat", "zijn", "mooie", "woorden", "v" ] ], [ [ "oor", "de", "poging", "om", "te", "achterhalen", "hoe", "je", "de", "kijker", "-", "en", "dus", "de", "adverteerder", "-", "beter", "van", "dienst", "kan", "zijn.", "Of", "dat", "mag,", "is", "volgens", "de", "Autoriteit", "Persoonsgegevens", "nog", "maar", "de", "vraag.", "‘Het", "is", "niet", "zo", "dat", "je", "een", "zo", "groot", "mogelijke", "bak", "met", "gegevens", "mag", "verzamelen", "die", "je", "naar", "believen", "kunt", "inzetten", "voor", "welk", "fijn", "commercieel", "plan", "je", "ook", "bedenkt.’", "Een", "kind", "kan", "geen", "toestemming", "geven", "Zo", "ontstaan", "er", "meer", "vragen", "als", "je", "de", "praktijk", "van", "het", "mediabeleid", "vergelijkt", "met", "de", "met", "de", "mond", "beleden", "zorgvuldigheid.", "Is", "het", "wel", "in", "lijn", "met", "de", "AVG", "wanneer", "de", "Privacy-", "en" ], [ "van", "Talpa", "Holding", "NV", "stelt:", "‘Voor", "het", "verwerken", "van", "je", "persoonsgegevens", "maken", "wij", "gebruik", "van", "derde", "partijen", "die", "soms", "de", "beschikking", "krijgen", "over", "jouw", "gegevens.’", "De", "Autoriteit", "Persoonsgegevens", "vindt", "een", "dergelijke", "formulering", "wel", "heel", "summier.", "Woordvoerder", "Sandra", "Loois:", "‘‘Delen", "met", "derden’,", "dat", "kan", "iedereen", "zijn,", "dus", "dan", "weet", "je", "niet", "waar", "je", "ja", "tegen", "zegt", "en", "dat", "garandeert", "dus", "ook", "niks", "over", "je", "zeggenschap.", "Dit", "is", "niet", "in", "overeenstemming", "met", "de", "wet.’", "Een", "ander", "gevoelig", "onderwerp", "in", "veel", "privacy-statements", "is", "het", "verkrijgen", "van", "toestemming", "voor", "kinderen.", "‘Ben", "je", "jonger", "dan", "16", "jaar?", "Dan", "mag", "je", "alleen", "persoonsgegevens", "aan", "Talpa", "verstrekken", "als", "je", "ouders", "of", "wettelijke", "vertegenwoordigers", "deze", "policy", "hebben", "gelezen", "en", "je", "daarvoor", "toestemming", "hebben", "gegeven,’", "meldt", "Talpa.", "‘Met", "inachtneming", "van", "de", "beschikbare", "technologie", "doen", "wij", "redelijke", "inspanningen", "om", "te", "controleren", "of", "je", "ouders", "of", "wettelijke", "vertegenwoordigers", "echt", "toestemming", "hebben", "gegeven.’", "Maar", "hoe", "doe", "je", "dat,", "‘met", "inachtneming", "van", "de", "beschikbare", "technologie’?", "En", "wat", "zijn", "‘redelijke", "inspanningen’?", "Veel", "programma’s", "van", "Talpa", "zijn", "populair", "onder", "minderjarigen.", "‘Een", "kind", "kan", "feitelijk", "niet", "verklaren", "dat", "z'n", "ouders", "toestemming", "hebben", "gegeven’,", "zegt", "de", "AP-woordvoerder.", "Met", "dit", "probleem", "kampen", "meer", "bedrijven.", "Een", "van", "de", "mogelijkheden", "om", "die", "toestemming", "te", "controleren,", "is", "de", "creditcard-methode,", "aangezien", "alleen", "volwassenen", "over", "een", "creditcard", "kunnen", "beschikken.", "Door", "1", "eurocent", "over", "te", "maken,", "kan", "de", "aanbieder", "controleren", "of", "het", "kind", "de", "zegen", "van", "de", "ouders", "heeft.", "Talpa", "heeft", "een", "dergelijke", "toets", "niet", "opgenomen", "in", "zijn", "privacystatement.", "De", "baas", "over", "je", "eigen", "persoonsgegevens", "Mochten", "de", "vragen", "die", "de", "AP", "heeft", "binnengekregen", "naar", "aanleiding", "van", "VoetbalTV", "leiden", "tot", "een", "onderzoek", "naar", "Talpa,", "dan", "kan", "het", "zomaar", "zijn", "dat", "het", "hele", "privacybeleid", "van", "De", "Mols", "bedrijf", "wordt", "doorgelicht.", "De", "AP-woordvoerder:", "‘Als", "je", "denkt", "dat", "je", "recht", "wordt", "geschonden,", "kun", "je", "daarover", "een", "klacht", "indienen.", "We", "kunnen", "dan", "ook", "breder", "kijken:", "is", "het", "privacybeleid", "op", "orde,", "is", "de", "beveiliging", "op", "orde,", "heeft", "de", "organisatie", "voldoende" ] ], [ [ "ke", "toets", "van", "de", "Autoriteit", "Persoonsgegevens", "zal", "zijn", "of", "de", "dataverzameldrift", "van", "Talpa", "sowieso", "wel", "door", "de", "beugel", "kan.", "‘De", "privacywet", "gaat", "ervanuit", "dat", "jij", "de", "baas", "bent", "over", "je", "eigen", "persoonsgegevens.", "Daarvoor", "moet", "je", "voor", "elk", "gegeven", "weten", "waarom", "dat", "specifieke", "stukje", "informatie", "verzameld", "wordt.", "Alleen", "dan", "weet", "je", "waar", "je", "ja", "tegen", "zegt.’", "Ik", "kan", "de", "nieuwe", "strategie", "heel", "goed", "uitleggen", "aan", "de", "consument", "Als", "het", "zo", "ver", "komt,", "zal", "dat", "ongetwijfeld", "leiden", "tot", "juridische", "haarkloverij.", "Pim", "Schmitz", "zegt", "‘absoluut’", "niet", "te", "schrikken", "van", "een", "mogelijke", "controle", "door", "de", "toezichthouder", "naar", "aanleiding", "van", "vragen", "over", "VoetbalTV.", "‘Uiteraard", "hebben", "we", "er", "goed", "over", "nagedacht", "en", "is", "dat", "goed", "geregeld.", "En", "dat", "mensen", "daar", "wat", "van", "vinden", "en", "mogen", "vinden,", "prima.’", "Hij", "neemt", "zichzelf", "wel", "kwalijk", "dat", "Talpa", "zich", "heeft", "laten", "verrassen", "door", "de", "publiciteit", "over", "het", "datavraagstuk.", "‘We", "houden", "ons", "altijd", "aan", "de", "wet.", "Maar", "omdat", "we", "weten", "hoe", "gevoelig", "data", "en", "mediabedrijven", "liggen,", "hadden", "we", "er", "veel", "beter", "op", "moeten", "anticiperen", "door", "van", "tevoren", "duidelijkheid", "te", "verschaffen.’", "Hij", "kan", "de", "nieuwe", "strategie", "van", "Talpa", "heel", "goed", "uitleggen", "aan", "de", "consument,", "meent", "Schmitz.", "‘Als", "jij", "het", "prettig", "vindt", "om", "niet", "te", "worden", "bestookt", "met", "honderd", "advertenties", "per", "uur", "via", "een", "open", "kanaal,", "maar", "jij", "wilt", "heel", "gericht,", "op", "het", "moment", "dat", "jij", "dat", "aangeeft,", "een", "advertentie", "krijgen", "over", "een", "gebied", "dat", "jou", "interesseert,", "dan", "kun", "je", "daarop", "ja", "of", "nee", "zeggen.’", "Plezierige", "bespreking", "met", "de", "Autoriteit", "Persoonsgegevens", "De", "‘contentpropositie", "van", "de", "consument", "verbeteren’", "noemen", "ze", "dat", "in", "het", "cryptische", "marketing", "slang", "van", "Hilversum.", "Simpelweg", "betekent", "het", "dat", "jij", "bepaalt", "wat", "en", "wanneer", "je", "kijkt,", "luistert", "en", "surft." ], [ "‘Als", "je", "daar", "ja", "op", "zegt,", "maken", "we", "een", "afspraak:", "dit", "hebben", "we", "van", "u", "nodig,", "dat", "gebruiken", "we", "op", "zo’n", "manier", "en", "daar", "zijn", "we", "heel", "voorzichtig", "mee.", "Dat", "zullen", "we", "niet", "aan", "derden", "verkopen,", "dat", "houden", "we", "voor", "onszelf.", "En" ], [ "als", "u", "het", "niet", "meer", "prettig", "vindt", "of", "u", "bedenkt", "zich,", "nou,", "dan", "halen", "we", "u", "er", "weer", "uit.’", "Talpa-woordvoerder", "Thomas", "Loudon", "laat", "ons", "half", "november", "weten", "dat", "er", "‘inmiddels", "een", "plezierige", "bespreking", "met", "de", "AP", "heeft", "plaatsgevonden", "over", "VoetbalTV’.", "Daarbij", "zouden", "de", "partijen", "achter", "VoetbalTV", "hebben", "uitgelegd", "dat", "ze", "voorzichtig", "met", "persoonsgegevens", "en", "de", "privacy", "van", "de", "gebruikers", "omgaan.", "‘Deze", "toelichting", "was", "op", "dat", "moment", "voldoende", "voor", "de", "AP.’", "Verder", "benadrukt", "Loudon", "dat", "het", "mediabedrijf", "ook", "zorgvuldig", "is", "wanneer", "het", "data", "met", "derden", "deelt.", "‘Talpa", "zal", "de", "data", "van", "haar", "gebruikers", "niet", "los", "verkopen", "of", "verhandelen.’", "Als", "ze", "al", "persoonsgegevens", "delen,", "is", "dat", "volgens", "de", "woordvoerder", "met", "toestemming", "van", "de", "gebruiker.", "Hij", "noemt", "als", "voorbeeld", "deelnemers", "die", "bij", "een", "prijsvraag", "a" ] ], [ [ "anvinken", "dat", "ze", "er", "akkoord", "mee", "gaan", "dat", "de", "sponsor", "hun", "e-mailadres", "krijgt.", "Eind", "november", "meldt", "Loudon", "zich", "opnieuw.", "Een", "paar", "dagen", "nadat", "FTM", "en", "Investico/De", "Groene", "Amsterdammer", "hun", "vragen", "en", "punten", "van", "kritiek", "hebben", "voorgelegd", "aan", "het", "mediabedrijf,", "laat", "de", "woordvoerder", "weten", "dat", "het", "privacy", "dashboard", "van", "Talpa", "‘live’", "is", "gegaan.", "Daarin", "kan", "de", "gebruiker", "zelf", "aangeven", "wat", "hij", "wel", "of", "niet", "wil", "dat", "De", "Mol", "met", "derden", "deelt.", "Om", "bij", "dat", "keuzemenu", "uit", "te", "komen,", "dien", "je", "twee", "keer", "door", "te", "klikken,", "waarna", "je", "kunt", "aangeven", "of", "bedrijven", "als", "bijvoorbeeld", "GroupM", "en", "Amobee", "Inc", "gebruik", "mogen", "maken", "van", "jouw", "data.", "John", "de", "Mol", "zelf", "zat", "er", "niet", "over", "in,", "toen", "hij", "vorig", "jaar", "zijn", "nieuwe", "opzet", "presenteerde", "in", "Nieuwsuur.", "Hoe", "zit", "het", "met", "de", "privacyregels,", "wilde", "Twan", "Huys", "weten.", "‘Daar", "gaan", "wij", "ons", "aan", "houden,", "daar", "zorgen", "ze", "in", "Den", "Haag", "wel", "voor,’", "zei", "de", "Talpa-eigenaar.", "Voor", "Den", "Haag", "had", "De", "Mol", "wél", "een", "andere", "boodschap.", "Hij", "stoorde", "zich", "niet", "zozeer", "aan", "de", "macht", "van", "de", "grote", "multinationale", "reclamebedrijven,", "zei", "hij", "tegen", "Huys,", "maar", "veel", "eerder", "aan", "'de", "onmacht", "van", "Nederland,", "aan", "25", "jaar", "falend", "mediabeleid’.", "Talpa", "wil", "dat", "Den", "Haag", "de", "regels", "versoepelt,", "zodat", "het", "veel", "gemakkelijker", "wordt", "om", "te", "expanderen.", "De", "Mediawet", "maakt", "onderscheid", "tussen", "radio,", "tv,", "krant", "en", "online.", "Dat", "onderscheid", "is", "achterhaald,", "beweerde", "De", "Mol", "bij", "Nieuwsuur.", "‘Facebook", "en", "Google", "gaan", "daar", "online", "zo", "overheen", "dat", "je", "niet", "meer", "kunt", "zeggen:", "er", "is", "één", "gesegmenteerde", "reclamemarkt.", "Het", "gaat", "om", "dé", "reclame-euro", "en", "de", "kijker,", "de", "consument.’", "Ik", "lig", "al", "twee", "jaar", "onder", "onderzoek", "of", "we", "in", "radio", "niet", "te", "veel", "marktmacht", "hebben", "Wie", "nu", "een", "monopoliepositie", "dreigt", "te", "verwerven", "in", "één", "van", "die", "gebieden,", "krijgt", "de", "Autoriteit", "Markt", "en", "Consument", "(AMC)", "op", "zijn", "dak.", "Het", "is", "Talpa", "overkomen", "met", "de", "acquisitie", "van", "radiostations.", "‘Ik", "lig", "al", "twee", "jaar", "onder", "onderzoek", "of", "we", "daar", "niet", "te", "veel", "marktmacht", "hebben’,", "verzucht", "Pim", "Schmitz.", "‘Terwijl", "de", "totale", "radiomarkt", "5", "procent", "is", "van", "de", "advertentiemarkt", "in", "Nederland.", "Die", "ontschotting,", "dat", "weghalen,", "zou", "mij", "enorm", "helpen.’", "En", "niet", "alleen", "hem.", "Talpa", "is", "niet", "de", "enige", "met", "expansieplannen.", "In", "Nederland", "snuffelen", "alle", "grote", "mediapartijen", "aan", "elkaar.", "Ze", "zijn", "ook", "allemaal", "bezig,", "al", "dan", "niet", "samen,", "om", "zo", "effectief", "mogelijk", "data", "te", "delven.", "De", "Persgroep,", "Sanoma", "en", "de", "Telegraaf", "Media", "Groep", "proberen", "hun", "klanten", "in", "kaart", "te", "brengen", "in", "hun", "joint", "venture", "NLProfiel.", "De", "Mols", "directe", "concurrent", "RTL", "heeft", "met", "het", "project", "Fan", "Centric", "ook", "de", "bakens", "verzet", "en", "koerst", "af", "op", "dataverzameling.", "Het", "lijken", "voorbodes", "van", "verdergaande", "samenwerking,", "wellicht", "zelfs", "in", "één", "groot", "platform.", "De", "Mol", "hintte", "er", "afgelopen", "voorjaar", "op", "in", "RTL", "Late", "Night.", "‘Ik", "denk", "dat", "Nederland", "te", "klein", "is", "om", "twee", "grote", "televisiegroepen", "te", "hebben", "die", "elkaar", "naar", "het", "leven", "staan.", "Ik", "denk", "dat", "samenwerking", "onvermij" ] ], [ [ "delijk", "is,", "maar", "daar", "heb", "je", "twee", "partijen", "voor", "nodig.", "[..]", "Ik", "denk", "dat" ], [ "scheidingen", "wegvallen", "en", "dat", "het", "te", "zijner", "tijd", "denkbaar", "is", "dat", "je", "RTL", "en", "SBS", "in", "één", "bedrijf", "ziet", "eindigen.’", "Misplaatst", "Oranjegevoel", "De", "Mol", "als", "redder", "van", "het", "Nederlandse", "culturele", "erfgoed,", "dat", "klinkt", "toch", "raar", "over", "de", "eigenaar", "van", "een", "multinational", "die", "wereldwijd", "miljoenen", "verdient", "met", "absoluut", "on-Nederlandse", "tv-formats", "als", "The", "Voice.", "Schmitz", "schiet", "in", "de", "verdediging", "als", "we", "hem", "aanspreken", "op", "dat", "ons", "inziens", "misplaatste", "Oranjegevoel.", "‘We", "zijn", "gebaat", "bij", "een", "breed", "en", "pluriform", "aanbod", "van", "Nederlandse", "content", "en", "ik", "denk", "dat", "dat", "aanbod", "enorm", "verschraalt", "op", "het", "moment", "dat", "je", "niet", "een", "sterk", "lokaal", "alternatief", "kan", "bieden.’", "Dat", "zijn", "mooie", "woorden", "die", "het", "vast", "goed", "doen", "in", "Den", "Haag,", "maar", "eerder", "schroomde", "De", "Mol", "ook", "niet", "om", "zijn", "bedrijven", "aan", "buitenlandse", "partijen", "te", "verkopen:", "Endemol", "ging", "in", "2007", "naar", "het", "Spaanse", "Telefónica", "en", "in", "2015", "verkocht", "hij", "zijn", "productietak", "Talpa", "Media", "aan", "de", "Britse", "commerciële", "omroep", "ITV.", "Meerdere", "mensen", "die", "we", "spreken,", "menen", "dan", "ook", "dat", "Talpa", "met", "zijn", "datastrategie", "vooral", "bezig", "is", "om", "zichzelf", "in", "de", "etalage", "te", "plaatsen,", "om", "de", "belangrijkste", "speler", "te", "worden", "in", "de" ], [ "die", "Nederland", "is", "op", "mondiale", "schaal.", "Dan", "zou", "het", "zomaar", "kunnen", "dat", "binnen", "afzienbare", "tijd", "een", "wereldspeler", "als", "Netflix", "of", "Amazon", "zich", "meldt", "in", "Naarden.", "Het", "gaat", "om", "het", "creëren", "van", "waarde,", "niet", "om", "wie", "de", "houder", "van", "die", "waarde", "is", "‘Ik", "weet", "waar", "jullie", "naartoe", "willen’,", "zegt", "Schmitz.", "‘Maar", "het", "feit", "dat", "je", "een", "lokaal", "bedrijf", "bent", "en", "een", "strategie", "hebt", "ontwikkeld", "om", "je", "te", "positioneren", "versus", "de", "Netflixen", "van", "deze", "wereld", "op", "basis", "van", "nogmaals", "die", "lokale", "strategie,", "zegt", "uiteindelijk", "niks", "over", "wie", "de", "ultieme", "aandeelhouder", "is.’", "Dat", "kan", "volgens", "de", "recent", "vertrokken", "CEO", "net", "zo", "goed", "met", "een", "Finse", "aandeelhouder", "of", "een", "Duitse", "eigenaar.", "‘Het", "gaat", "om", "het", "creëren", "van", "de", "waarde", "en", "niet", "om", "wie", "de", "houder", "van", "die", "waarde", "is.’", "Vooralsnog", "is", "die", "houder", "John", "de", "Mol", "en", "pimpt", "hij", "zijn", "waarde", "met", "het", "uitputtend", "volgen", "van", "zijn", "klanten." ] ] ]
[ [ "nl", "nl" ], [ "nl" ], [ "nl", "nl", "nl", "de", "nl" ], [ "nl", "nl", "nl" ], [ "nl", "nl" ], [ "nl" ], [ "nl", "nl" ], [ "nl", "nl", "nl" ], [ "nl" ], [ "nl", "nl", "nl" ] ]
[ "mono" ]
[ [ "by", "Paul", "Kennedy", "@pkedit,", "Sep", "24,", "2013", "By", "Paul", "Kennedy", "SOBERING", "NUMBERS.", "Aaron", "Levine", "Sea-Tac", "Ratings:", "RATING", "EVENT", "4.1", "2.6", "1.8", "1.6", "VIVE", "LE", "BASKET!", "AYSO", "ON", "THE", "EMMYS.", "Will", "Farrell", "Magnus", "Mattias", "Soccer", "America", "on", "Twitter:", "Google+:", "Facebook:", "Soccer", "Business", "Insider", "Saturday's", "LA", "Galaxy-Seattle", "Sounders", "game", "averaged", "247,000", "viewers,", "making", "it", "the", "most-watched", "MLS", "game", "of", "the", "year", "on", "the", "network.It", "bumped", "the", "average", "for", "the", "last", "eight", "MLS", "games", "on", "NBCSN", "to", "142,000", "per", "game,", "up", "60", "percent", "from", "the", "average", "of", "89,000", "for", "the", "same", "eight", "games", "in", "2012.Those", "eight", "games", "happen", "to", "coincide", "with", "the", "start", "of", "the", "English", "Premier", "League", "season,", "its", "first", "on", "NBCSN", "and", "the", "other", "NBC", "networks.", "An", "EPL", "effect?", "Not", "entirely.", "Strong", "playoff", "races,", "particularly", "in", "the", "Western", "Conference", "with", "popular", "teams", "like", "the", "Sounders,", "Galaxy,", "Portland", "Timbers", "and", "Real", "Salt", "Lake", "in", "action,", "have", "helped.", "Friday", "night", "--", "an", "off", "day", "for", "the", "EPL", "--", "has", "done", "surprisingly", "well", "as", "the", "four", "Friday", "games", "over", "the", "last", "month", "have", "averaged", "153,000", "per", "game.NBCSN", "is", "averaging", "111,000", "per", "game", "for", "31", "MLS", "games.", "It", "has", "seven", "games", "to", "catch", "up", "to", "its", "final", "regular-season", "average", "of", "122,000", "on", "NBCSN", "in", "2012.", "It", "would", "need", "to", "average", "170,000", "viewers", "per", "game", "to", "catch", "the", "2012", "average,", "but", "that's", "unlikely", "as", "two", "of", "the", "three", "remaining", "Friday", "night", "games", "involve", "last-place", "D.C.", "United,", "and", "of", "the", "big", "four", "Western", "Conference", "teams,", "only", "Seattle", "is", "scheduled", "(twice)", "in", "the", "last", "seven", "matches.It", "should", "be", "pointed", "again", "that", "five", "2012", "MLS", "broadcasts", "took", "place", "during", "the", "London", "Olympics", "when", "NBCSN", "drew", "record", "audiences.", "Benefiting", "from", "the", "lead-ins", "of", "Olympic", "coverage,", "the", "five", "MLS", "games", "averaged", "286,000", "viewers.", "If", "you", "throw", "those", "five", "games", "out,", "the", "MLS", "average", "for", "2012", "would", "have", "been", "99,000", "viewers.A", "few", "viewing", "figures", "from", "last", "weekend", "underscore,", "though,", "just", "how", "far", "MLS", "still", "has", "to", "go", "on", "the", "television", "front.Sunday's", "Manchester", "derby", "between", "City", "and", "United", "was", "watched", "by", "an", "average", "of", "852,000", "viewers", "on", "NBCSN,", "the", "network's", "largest", "audience", "to", "date", "for", "its", "EPL", "coverage", "and", "more", "than", "three", "times", "the", "size", "of", "the", "audience", "for", "the", "Galaxy-Sounders", "game.,", "the", "sports", "director", "of", "Seattle's", "Q13", "FOX,", "tweeted", "the", "Sea-Tac", "ratings", "for", "Saturday", "sports", "events:Washington-Idaho", "State", "(college", "football)Washington", "State-Idaho", "(college", "football)LA", "Galaxy-Sounders", "(MLS)Mariners-Angeles", "(MLB)The", "France-Lithuania", "final", "for", "the", "Eurobasket", "2013", "championship", "outdrew", "the", "much-anticipated", "Ligue", "1", "match", "between", "big-spending", "clubs", "Paris", "St.", "Germain", "and", "Monaco", "by", "more", "than", "3-1", "on", "French", "television.France's", "first", "European", "basketball", "title", "drew", "an", "average", "of", "5,467,000", "viewers", "on", "France", "2", "and", "Canal+Sport", "while", "PSG-Monaco", "on", "Canal+", "averaged", "1,674,000,", "which", "was", "nonetheless", "the", "second", "largest", "audience", "for", "a", "Ligue", "1", "match", "so", "far", "this", "season.Did", "you", "catch's", "appearance", "on", "the", "Emmys", "with", "his", "three", "sons", "in", "tow?", "His", "appearance", "drew", "some", "of", "the", "biggest", "laughs", "of", "the", "evening", "as", "he", "explained", "they", "had", "come", "straight", "from", "soccer", "and", "didn't", "have", "time", "to", "find", "child", "care.", "Talk", "about", "good", "product", "placement:", "older", "sonsandwere", "wearing", "AYSO", "50th", "anniversary", "jerseys.----------------------------Follow", "Soccer", "America" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "by", "Paul", "Kennedy", "@pkedit,", "Sep", "24,", "2013", "By", "Paul", "Kennedy", "SOBERING", "NUMBERS.", "Aaron", "Levine", "Sea-Tac", "Ratings:", "RATING", "EVENT", "4.1", "2.6", "1.8", "1.6", "VIVE", "LE", "BASKET!", "AYSO", "ON", "THE", "EMMYS.", "Will", "Farrell", "Magnus", "Mattias", "Soccer", "America", "on", "Twitter:", "Google+:", "Facebook:", "Soccer", "Business", "Insider", "Saturday's", "LA", "Galaxy-Seattle", "Sounders", "game", "averaged", "247,000", "viewers,", "making", "it", "the", "most-watched", "MLS", "game", "of", "the", "year", "on", "the", "network.It", "bumped", "the", "average", "for", "the", "last", "eight", "MLS", "games", "on", "NBCSN", "to", "142,000", "per", "game,", "up", "60", "percent", "from", "the", "average", "of", "89,000", "for", "the", "same", "eight", "games", "in", "2012.Those", "eight", "games", "happen", "to", "coincide", "with", "the", "start", "of", "the", "English", "Premier", "League", "season,", "its", "first", "on", "NBCSN", "and", "the", "other", "NBC", "networks.", "An", "EPL", "effect?", "Not", "entirely.", "Strong", "playoff", "races,", "particularly", "in", "the", "Western", "Conference", "with", "popular", "teams", "like", "the", "Sounders,", "Galaxy,", "Portland", "Timbers", "and", "Real", "Salt", "Lake", "in", "action,", "have", "helped.", "Friday", "night", "--", "an", "off", "day", "for", "the", "EPL", "--", "has", "done", "surprisingly", "well", "as", "the", "four", "Friday", "games", "over", "the", "last", "month", "have", "averaged", "153,000", "per", "game.NBCSN", "is", "averaging", "111,000", "per", "game", "for", "31", "MLS", "games.", "It", "has", "seven", "games", "to", "catch", "up", "to", "its", "final", "regular-season", "average", "of", "122,000", "on", "NBCSN", "in", "2012.", "It", "would", "need", "to", "average", "170,000", "viewers", "per", "game", "to", "catch", "the", "2012", "average,", "but", "that's", "unlikely", "as", "two", "of", "the", "three", "remaining", "Friday", "night", "games", "involve", "last-place", "D.C.", "United,", "and", "of", "the", "big", "four", "Western", "Conference", "teams,", "only", "Seattle", "is", "scheduled", "(twice)", "in", "the", "last", "seven", "matches.It", "should", "be", "pointed", "again", "that", "five", "2012", "MLS", "broadcasts", "took", "place", "during", "the", "London", "Olympics", "when", "NBCSN", "drew", "record", "audiences.", "Benefiting", "from", "the", "lead-ins", "of", "Olympic", "coverage,", "the", "five", "MLS", "games", "averaged", "286,000", "viewers.", "If", "you", "throw", "those", "five", "games", "out,", "the", "MLS", "average", "for", "2012", "would", "have", "been", "99,000", "viewers.A", "few", "viewing", "figures", "from", "last", "weekend", "underscore,", "though,", "just", "how", "far", "MLS", "still", "has", "to", "go", "on", "the", "television", "front.Sunday's", "Manchester", "derby", "between", "City", "and", "United", "was", "watched", "by", "an", "average", "of", "852,000", "viewers", "on", "NBCSN,", "the", "network's", "largest", "audience", "to", "date", "for", "its", "EPL", "coverage", "and", "more", "than", "three", "times", "the", "size", "of", "the", "audience", "for", "the", "Galaxy-Sounders", "game.,", "the", "sports", "director", "of", "Seattle's", "Q13", "FOX,", "tweeted", "the", "Sea-Tac", "ratings", "for", "Saturday", "sports", "events:Washington-Idaho", "State", "(college", "football)Washington", "State-Idaho", "(college", "football)LA", "Galaxy-Sounders", "(MLS)Mariners-Angeles", "(MLB)The", "France-Lithuania", "final", "for", "the", "Eurobasket", "2013", "championship", "outdrew", "the", "much-anticipated", "Ligue", "1", "match", "between", "big-spending", "clubs", "Paris", "St.", "Germain", "and", "Monaco", "by", "more", "than", "3-1", "on", "French", "television.France's", "first", "European", "basketball", "title", "drew", "an", "average", "of", "5,467,000", "viewers", "on", "France", "2", "and", "Canal+Sport", "while", "PSG-Monaco", "on", "Canal+", "averaged", "1,674,000,", "which", "was", "nonetheless", "the", "second", "largest", "audience", "for", "a", "Ligue", "1", "match", "so", "far", "this", "season.Did", "you", "catch's", "appearance", "on", "the", "Emmys", "with", "his", "three", "sons", "in", "tow?", "His", "appearance", "drew", "some", "of", "the", "biggest", "laughs", "of", "the", "evening", "as", "he", "explained", "they", "had", "come", "straight", "from", "soccer", "and", "didn't", "have", "time", "to", "find", "child", "care.", "Talk", "about", "good", "product", "placement:", "older", "sonsandwere", "wearing", "AYSO", "50th", "anniversary", "jerseys.----------------------------Follow", "Soccer", "America" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Photo:", "Taylor", "Hill/FilmMagic", "If", "you", "had", "plans", "to", "see", "either", "King", "Kong", "or", "The", "Cher", "Show", "on", "Broadway", "at", "some", "point,", "hopefully", "they", "were", "soon,", "as", "both", "shows", "announced", "on", "Tuesday", "evening", "that", "they", "would", "close", "on", "August", "18.", "“Telling", "Cher’s", "life", "story", "on", "Broadway", "has", "been", "a", "joy,”", "producer", "Flody", "Suarez", "said", "in", "a", "statement.", "“Watching", "audiences", "relive", "her", "empowering", "story", "through", "six", "decades", "worth", "of", "iconic", "songs,", "movies,", "costumes,", "and", "relationships", "has", "been", "incredible.”", "But", "don’t", "fret,", "you", "will", "still", "get", "a", "chance", "to", "see", "the", "musical", "that", "Kanye", "had", "to", "apologize", "to.", "The", "Cher", "Show", "is", "launching", "a", "North", "American", "tour", "in", "October", "of", "2020.", "You’ll", "have", "to", "go", "a", "little", "farther", "out", "of", "your", "way", "to", "catch", "King", "Kong,", "however,", "since", "it’s", "set", "to", "open", "in", "Shanghai", "in", "2021.", "However,", "the", "production", "did", "say", "in", "their", "statement", "that", "a", "“North", "American", "tour,", "as", "well", "as", "productions", "in", "Japan", "and", "Spain,", "are", "in", "development.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Photo:", "Taylor", "Hill/FilmMagic", "If", "you", "had", "plans", "to", "see", "either", "King", "Kong", "or", "The", "Cher", "Show", "on", "Broadway", "at", "some", "point,", "hopefully", "they", "were", "soon,", "as", "both", "shows", "announced", "on", "Tuesday", "evening", "that", "they", "would", "close", "on", "August", "18.", "“Telling", "Cher’s", "life", "story", "on", "Broadway", "has", "been", "a", "joy,”", "producer", "Flody", "Suarez", "said", "in", "a", "statement.", "“Watching", "audiences", "relive", "her", "empowering", "story", "through", "six", "decades", "worth", "of", "iconic", "songs,", "movies,", "costumes,", "and", "relationships", "has", "been", "incredible.”", "But", "don’t", "fret,", "you", "will", "still", "get", "a", "chance", "to", "see", "the", "musical", "that", "Kanye", "had", "to", "apologize", "to.", "The", "Cher", "Show", "is", "launching", "a", "North", "American", "tour", "in", "October", "of", "2020.", "You’ll", "have", "to", "go", "a", "little", "farther", "out", "of", "your", "way", "to", "catch", "King", "Kong,", "however,", "since", "it’s", "set", "to", "open", "in", "Shanghai", "in", "2021.", "However,", "the", "production", "did", "say", "in", "their", "statement", "that", "a", "“North", "American", "tour,", "as", "well", "as", "productions", "in", "Japan", "and", "Spain,", "are", "in", "development.”" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "History", "In", "1841,", "35", "delegates", "to", "the", "Union", "Baptist", "Association", "meeting", "accepted", "the", "suggestion", "of", "Reverend", "William", "Milton", "Tryon", "and", "District", "Judge", "R.E.B.", "Baylor", "to", "establish", "a", "Baptist", "university", "in", "Texas.", "The", "Texas", "Baptist", "Education", "Society", "then", "petitioned", "the", "Congress", "of", "the", "Republic", "of", "Texas", "to", "charter", "a", "Baptist", "university", "in", "the", "fall", "of", "1844.", "Republic", "President", "Anson", "Jones", "signed", "the", "Act", "of", "Congress", "on", "Feb.", "1,", "1845,", "officially", "establishing", "Baylor", "University.", "Reverend", "James", "Huckins,", "the", "first", "Baptist", "missionary", "to", "Texas,", "was", "Baylor's", "first", "full-time", "fundraiser", "and", "the", "third", "founding", "father", "of", "the", "university.", "Although", "these", "three", "men", "are", "credited", "as", "being", "the", "founders", "of", "Baylor", "University,", "there", "are", "many", "others", "who", "worked", "to", "see", "our", "university", "established", "in", "Texas.", "After", "the", "University", "was", "chartered", "on", "February", "1,", "1845,", "four", "communities", "made", "bids", "to", "be", "the", "location:", "Travis,", "Huntsville,", "Shannon's", "Prairie", "and", "Independence.", "Independence", "was", "selected,", "and", "classes", "for", "preparatory", "students", "began", "in", "May", "1846", "with", "college", "courses", "offered", "the", "following", "June.", "In", "1886,", "Baylor", "and", "Waco", "University", "consolidated", "to", "form", "Baylor", "University", "at", "Waco.", "Artist", "Erwin", "Hearne's", "depiction", "of", "the", "Act", "of", "Congress", "that", "chartered", "Baylor", "University", "on", "February", "1,", "1845.", "Artist", "Erwin", "Hearne's", "depiction", "of", "the", "Act", "of", "Congress", "that", "chartered", "Baylor", "University", "on", "February", "1,", "1845.", "From", "humble", "beginnings", "in", "Independence,", "Texas,", "the", "campus", "has", "grown", "to", "approximately", "1,000", "acres", "in", "Waco,", "Texas,", "annually", "educating", "more", "than", "15,000", "men", "and", "women", "to", "pursue", "their", "individual", "life", "callings.", "These", "are", "exciting", "times", "in", "the", "life", "of", "the", "University", "-", "a", "period", "in", "which", "our", "institution", "is", "striving", "to", "remain", "both", "a", "relevant", "institution", "of", "higher", "learning", "for", "the", "coming", "years", "and", "to", "continue", "to", "fulfill", "our", "original", "mission", "laid", "down", "by", "our", "founders:", "to", "be", "a", "Christian", "University", "\"fully", "susceptible", "of", "enlargement", "and", "development", "to", "meet", "the", "needs", "of", "all", "ages", "to", "come.\"", "In", "a", "world", "where", "faith", "is", "often", "the", "casualty", "of", "a", "serious", "pursuit", "of", "academic", "achievement,", "Baylor", "is", "a", "special", "place.", "The", "ability", "and", "willingness", "of", "Baylor", "to", "adapt", "and", "change", "to", "achieve", "continual", "progress", "can", "be", "traced", "throughout", "its", "history.", "It", "has", "endured", "and", "survived", "hardships,", "from", "financial", "difficulties,", "to", "the", "Great", "Depression,", "to", "world", "wars.", "It", "made", "a", "historic", "and", "critical", "decision", "to", "move", "from", "Independence", "to", "Waco,", "its", "current", "home.", "It", "divested", "its", "medical", "and", "dental", "schools", "at", "a", "time", "when", "that", "proved", "to", "be", "the", "most", "prudent", "decision", "for", "the", "success", "of", "each", "program.", "It", "even", "had", "the", "foresight", "and", "fortitude", "to", "change", "its", "very", "charter", "to", "insulate", "the", "institution", "from", "denominational", "struggles.", "Had", "Baylor", "and", "its", "leaders", "throughout", "history", "not", "faced", "these", "decisions", "and", "challenges", "with", "foresight", "and", "a", "commitment", "to", "progress,", "it", "would", "not", "be", "the", "leading", "university", "that", "it", "is", "today.", "The", "University's", "Pro", "Futuris", "vision", "will", "continue", "to", "help", "Baylor", "adapt", "and", "grow", "with", "the", "world", "around", "it,", "while", "ever", "strengthening", "its", "original", "mission", "and", "heritage.", "Baylor", "is", "classified", "as", "a", "Doctoral", "University", "with", "Higher", "Research", "Activity", "by", "the", "Carnegie", "Commission", "on", "Higher", "Education.", "Baylor", "has", "an", "international", "reputation", "for", "educational", "excellence", "built", "upon", "the", "faculty's", "commitment", "to", "teaching,", "scholarship", "and", "interdisciplinary", "research", "that", "produces", "outstanding", "graduates.", "Baylor", "University", "is", "a", "private", "Christian", "university", "and", "a", "nationally", "ranked", "liberal", "arts", "institution.", "Our", "rank", "of", "alumni", "include", "missionaries", "and", "pastors,", "heads", "of", "Fortune", "500", "companies,", "governors", "of", "Texas", "and", "professional", "athletes.", "Chartered", "in", "1845", "by", "the", "Republic", "of", "Texas", "through", "the", "efforts", "of", "Baptist", "pioneers,", "Baylor", "is", "the", "oldest", "continually", "operating", "university", "in", "the", "state." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "History", "In", "1841,", "35", "delegates", "to", "the", "Union", "Baptist", "Association", "meeting", "accepted", "the", "suggestion", "of", "Reverend", "William", "Milton", "Tryon", "and", "District", "Judge", "R.E.B.", "Baylor", "to", "establish", "a", "Baptist", "university", "in", "Texas.", "The", "Texas", "Baptist", "Education", "Society", "then", "petitioned", "the", "Congress", "of", "the", "Republic", "of", "Texas", "to", "charter", "a", "Baptist", "university", "in", "the", "fall", "of", "1844.", "Republic", "President", "Anson", "Jones", "signed", "the", "Act", "of", "Congress", "on", "Feb.", "1,", "1845,", "officially", "establishing", "Baylor", "University.", "Reverend", "James", "Huckins,", "the", "first", "Baptist", "missionary", "to", "Texas,", "was", "Baylor's", "first", "full-time", "fundraiser", "and", "the", "third", "founding", "father", "of", "the", "university.", "Although", "these", "three", "men", "are", "credited", "as", "being", "the", "founders", "of", "Baylor", "University,", "there", "are", "many", "others", "who", "worked", "to", "see", "our", "university", "established", "in", "Texas.", "After", "the", "University", "was", "chartered", "on", "February", "1,", "1845,", "four", "communities", "made", "bids", "to", "be", "the", "location:", "Travis,", "Huntsville,", "Shannon's", "Prairie", "and", "Independence.", "Independence", "was", "selected,", "and", "classes", "for", "preparatory", "students", "began", "in", "May", "1846", "with", "college", "courses", "offered", "the", "following", "June.", "In", "1886,", "Baylor", "and", "Waco", "University", "consolidated", "to", "form", "Baylor", "University", "at", "Waco.", "Artist", "Erwin", "Hearne's", "depiction", "of", "the", "Act", "of", "Congress", "that", "chartered", "Baylor", "University", "on", "February", "1,", "1845.", "Artist", "Erwin", "Hearne's", "depiction", "of", "the", "Act", "of", "Congress", "that", "chartered", "Baylor", "University", "on", "February", "1,", "1845.", "From", "humble", "beginnings", "in", "Independence,", "Texas,", "the", "campus", "has", "grown", "to", "approximately", "1,000", "acres", "in", "Waco,", "Texas,", "annually", "educating", "more", "than", "15,000", "men", "and", "women", "to", "pursue", "their", "individual", "life", "callings.", "These", "are", "exciting", "times", "in", "the", "life", "of", "the", "University", "-", "a", "period", "in", "which", "our", "institution", "is", "striving", "to", "remain", "both", "a", "relevant", "institution", "of", "higher", "learning", "for", "the", "coming", "years", "and", "to", "continue", "to", "fulfill", "our", "original", "mission", "laid", "down", "by", "our", "founders:", "to", "be", "a", "Christian", "University", "\"fully", "susceptible", "of", "enlargement", "and", "development", "to", "meet", "the", "needs", "of", "all", "ages", "to", "come.\"", "In", "a", "world", "where", "faith", "is", "often", "the", "casualty", "of", "a", "serious", "pursuit", "of", "academic", "achievement,", "Baylor", "is", "a", "special", "place.", "The", "ability", "and", "willingness", "of", "Baylor", "to", "adapt", "and", "change", "to", "achieve", "continual", "progress", "can", "be", "traced", "throughout", "its", "history.", "It", "has", "endured", "and", "survived", "hardships,", "from", "financial", "difficulties,", "to", "the", "Great", "Depression,", "to", "world", "wars.", "It", "made", "a", "historic", "and", "critical", "decision", "to", "move", "from", "Independence", "to", "Waco,", "its", "current", "home.", "It", "divested", "its", "medical", "and", "dental", "schools", "at", "a", "time", "when", "that", "proved", "to", "be", "the", "most", "prudent", "decision", "for", "the", "success", "of", "each", "program.", "It", "even", "had", "the", "foresight", "and", "fortitude", "to", "change", "its", "very", "charter", "to", "insulate", "the", "institution", "from", "denominational", "struggles.", "Had", "Baylor", "and", "its", "leaders", "throughout", "history", "not", "faced", "these", "decisions", "and", "challenges", "with", "foresight", "and", "a", "commitment", "to", "progress,", "it", "would", "not", "be", "the", "leading", "university", "that", "it", "is", "today.", "The", "University's", "Pro", "Futuris", "vision", "will", "continue", "to", "help", "Baylor", "adapt", "and", "grow", "with", "the", "world", "around", "it,", "while", "ever", "strengthening", "its", "original", "mission", "and", "heritage.", "Baylor", "is", "classified", "as", "a", "Doctoral", "University", "with", "Higher", "Research", "Activity", "by", "the", "Carnegie", "Commission", "on", "Higher", "Education.", "Baylor", "has", "an", "international", "reputation", "for", "educational", "excellence", "built", "upon", "the", "faculty's", "commitment", "to", "teaching,", "scholarship", "and", "interdisciplinary", "research", "that", "produces", "outstanding", "graduates.", "Baylor", "University", "is", "a", "private", "Christian", "university", "and", "a", "nationally", "ranked", "liberal", "arts", "institution.", "Our", "rank", "of", "alumni", "include", "missionaries", "and", "pastors,", "heads", "of", "Fortune", "500", "companies,", "governors", "of", "Texas", "and", "professional", "athletes.", "Chartered", "in", "1845", "by", "the", "Republic", "of", "Texas", "through", "the", "efforts", "of", "Baptist", "pioneers,", "Baylor", "is", "the", "oldest", "continually", "operating", "university", "in", "the", "state." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "“The", "US", "has", "delivered", "an", "object", "lesson", "in", "how", "not", "to", "conduct", "diplomacy”,", "said", "the", "first", "sentence", "of", "an", "editorial", "of", "Dawn,", "a", "leading", "Pakistan", "daily.", "(“US", "aid", "cut”,", "September", "3,", "2018)", "The", "claimed", "“object", "lesson”", "was", "in", "reference", "to", "the", "US", "permanent", "aid", "cut", "to", "Pakistan", "of", "$300", "million.", "The", "US", "announcement", "came", "only", "days", "proceeding", "to", "the", "planned", "Pakistan", "visit", "by", "Mike", "Pompeo,", "the", "US", "secretary", "of", "state.", "The", "editorial", "also", "said:", "“[N]ow", "what", "remains", "to", "be", "seen", "is", "if", "Secretary", "Pompeo", "will", "try", "and", "bully", "the", "Pakistani", "leadership", "during", "his", "visit", "or", "if", "he", "will", "be", "deployed", "in", "a", "more", "traditional", "good-cop", "diplomatic", "role.”", "A", "strange", "relationship!", "Once", "it", "was", "strong", "and", "hand", "in", "hand.", "Now", "it’s", "going", "through", "aid", "cuts", "and", "possibility", "of,", "as", "the", "editorial", "said,", "bullying.", "The", "editorial", "also", "said:", "“The", "aid", "cut-off", "is", "not", "new", "[…]", "But", "it", "will", "surely", "rankle", "in", "Pakistan", "and", "rightly", "so:", "more", "than", "the", "aid,", "it", "is", "the", "hectoring", "and", "aggressive", "tone", "of", "the", "Trump", "administration", "towards", "Pakistan", "[…]”", "The", "aid", "cut-background", "is", "broad:", "Spanning", "from", "Pakistan", "to", "Afghanistan", "to", "Iran.", "Only", "days", "ago,", "Javed", "Zarif,", "Iranian", "foreign", "minister,", "had", "a", "warm", "visit", "to", "Islamabad.", "Pakistan,", "according", "to", "the", "editorial,", "“emphasized", "its", "support", "for", "Iran”.", "The", "editorial", "expressed", "its", "assumption:", "The", "support", "“could", "be", "a", "factor", "in", "the", "Trump", "administration’s", "apparent", "pique", "at", "Pakistan.”", "The", "present", "state", "of", "Pakistan’s", "economy", "is", "pushing", "the", "state", "to", "international", "creditors,", "and,", "the", "editorial", "said:", "“[T]he", "US", "has", "already", "indicated", "a", "willingness", "to", "overtly", "bring", "geopolitics", "into", "the", "workings", "of", "the", "IFIs”", "(International", "Financial", "Institutions).", "Who", "imagined", "during", "the", "“golden", "Ziaul", "Huq-days”", "that", "the", "relationship", "would", "face", "such", "a", "state", "of", "friendship", "–", "aid", "cuts", "and", "bullying?", "During", "those", "days", "Pakistan", "was", "the", "kingpin", "in", "the", "US’", "Afghan", "War", "machine.", "The", "US", "desires", "that", "Pakistan’s", "role", "in", "Afghanistan", "should", "move", "along", "the", "US", "designated", "path.", "But,", "Pakistan", "has", "its", "own", "agenda,", "and", "limitation.", "The", "agenda", "has", "developed", "from", "its", "interests", "and", "requirements", "for", "existence.", "The", "limitation", "is", "in-built.", "It", "can’t", "move", "along", "whatever", "path", "it", "likes.", "The", "in-built", "limitation", "is", "the", "brake", "on", "many", "of", "its", "wishes.", "A", "sorry", "state", "being", "constantly", "experienced", "by", "the", "state,", "which", "was", "once", "an", "enthusiastic", "partner", "in", "an", "imperial", "game!", "Once,", "US", "spy", "planes", "used", "to", "take", "off", "from", "Pakistan", "aerodrome", "to", "keep", "an", "eye", "on", "Soviet", "Union.", "Against", "the", "current", "development,", "Raza", "Rabbani,", "a", "People’s", "Party", "senator,", "has", "suggested", "that", "Imran", "Khan,", "the", "Pakistan", "prime", "minister,", "should", "not", "meet", "Pompeo", "during", "his", "visit", "to", "Pakistan", "and", "only", "the", "foreign", "minister", "should", "hold", "talks", "with", "the", "US", "leader.", "(Dawn,", "“Rabbani", "urges", "PM", "not", "to", "meet", "Pompeo”,", "September", "4,", "2018)", "The", "Pak", "senator", "said", "that", "protocol", "demanded", "that", "the", "prime", "minister", "should", "not", "meet", "Pompeo", "as", "whenever", "a", "Pakistani", "prime", "minister", "visited", "the", "US,", "he", "was", "not", "received", "by", "the", "US", "president.", "He", "also", "referred", "to", "the", "aid", "cut", "issue.", "He", "regretted", "that", "Pakistan", "has", "rendered", "a", "number", "of", "sacrifices", "for", "peace;", "but,", "the", "US", "was", "constantly", "asking", "to", "do", "more;", "not", "only", "the", "US", "has", "advised", "the", "IMF", "not", "to", "give", "loan", "to", "Pakistan,", "but", "it", "also", "ended", "military", "training", "program.", "These", "sound", "sad,", "sound", "a", "deep", "pain", "and", "humiliation!", "But,", "what’s", "to", "do?", "A", "reality", "has", "developed", "over", "years", "and", "decades,", "has", "developed", "through", "closest", "possible", "collaboration", "in", "a", "war", "waged", "in", "another", "country", "–", "Afghanistan.", "It’s", "a", "reality", "difficult", "to", "escape.", "The", "reality", "has", "roots", "and", "components,", "which", "go", "unidentified", "by", "a", "quarter.", "The", "components", "are", "spread", "inside", "and", "outside", "of", "the", "country.", "A", "single", "component", "can’t", "reshape", "the", "reality.", "Another", "report", "of", "Dawn", "helps", "look", "into", "the", "jumbled", "reality.", "The", "report", "said:", "“[T]he", "Trump", "administration", "has", "made", "it", "clear", "that", "Pakistan", "will", "have", "to", "back", "the", "US", "strategy", "in", "Afghanistan", "if", "it", "wants", "good", "relations", "with", "Washington.”", "(“US", "spells", "out", "terms", "of", "engagement", "with", "Pakistan”,", "September", "3,", "2018)", "For", "Pakistan,", "it’s", "a", "difficult", "path.", "Can", "it", "back", "the", "US", "strategy?", "What", "shall", "happen", "to", "its", "friendship", "with", "China,", "to", "its", "attempt", "to", "strengthen", "friendship", "with", "Russia,", "to", "the", "warmness", "it", "has", "shown", "to", "Iran", "if", "it", "backs", "the", "US", "strategy?", "How", "much", "wide", "is", "the", "space", "for", "maneuver", "there", "for", "Pakistan?", "On", "the", "other", "hand,", "there’s", "the", "condition", "of", "its", "economy,", "which", "is", "compelling", "it", "to", "have", "a", "hope", "on", "the", "IMF?", "Moreover,", "there", "are", "constituencies", "in", "home,", "which", "are", "to", "be", "coordinated", "with;", "and", "a", "few", "of", "these", "constituencies", "don’t", "depend", "on", "rhetoric,", "but", "on", "economic", "functions.", "The", "US", "strategy" ], [ ",", "the", "Washington", "datelined", "Dawn", "report", "said,", "is", "“to", "use", "a", "combination", "of", "military", "and", "diplomatic", "pressures", "to", "force", "the", "Taliban", "to", "work", "with", "Kabul", "for", "restoring", "peace", "in", "Afghanistan.”", "The", "case", "thus", "turns", "more", "complex", "as", "there", "are", "other", "countries", "having", "their", "strategies", "in", "the", "case", "of", "Afghanistan,", "and", "those", "strategies", "are", "not", "always", "in", "cohesion", "with", "the", "US", "strategy", "and", "Pakistani", "interest.", "The", "report", "indicated", "that", "Washington", "is", "looking", "for", "ways", "for", "an", "honorable", "withdrawal", "of", "its", "troops", "from", "Afghanistan.", "Shall", "its", "competitors", "provide", "it", "the", "opportunity?", "How", "shall", "Pakistan", "coordinate", "between", "the", "competing", "interests,", "a", "few", "of", "which", "it", "can’t", "deny,", "if", "the", "opportunity", "is", "not", "provided", "to", "the", "US", "by", "its", "competitors?", "What", "shall", "happen", "if", "Washington", "likes", "to", "employ", "its", "proxies", "in", "a", "part", "of", "Afghanistan?", "For", "Pakistan,", "it’s", "a", "difficult", "account", "to", "reconcile.", "The", "Dawn", "report", "referred", "to", "a", "telephone", "conversation", "between", "Pompeo", "and", "Khan", "last", "week:", "Pompeo", "asked", "Khan", "to", "take", "“decisive", "action", "against", "all", "terrorists", "operating", "in", "Pakistan”.", "A", "tough", "asking", "from", "a", "friend!", "But", "the", "US", "was", "sending", "the", "same", "message", "with", "almost", "the", "same", "tone", "over", "a", "long", "period", "of", "time.", "How", "long", "can", "it", "be", "ignored", "while", "the", "economy", "needs", "IMF’s", "helping", "hands?", "“Initially”,", "the", "Dawn", "report", "said,", "“Islamabad", "disputed", "the", "US", "version", "of", "this", "conversation,", "but", "later", "withdrew", "its", "objection.”", "Not", "an", "honorable", "and", "efficient", "show!", "The", "corner", "will", "appear", "very", "narrow", "for", "Pakistan", "if", "it", "comes", "out", "that", "the", "positions", "of", "Washington", "and", "of", "a", "few", "other", "powerful", "countries,", "on", "which", "Pakistan", "relies", "or", "is", "trying", "to", "rely,", "are", "the", "same:", "“decisive", "action", "against", "…", "”?", "The", "Dawn", "report", "referred", "to", "a", "talk", "by", "Randall", "G", "Schriver,", "the", "US", "assistant", "secretary", "of", "defence", "for", "Asian", "and", "Pacific", "security", "affairs,", "delivered", "at", "the", "Carnegie", "Endowment", "for", "International", "Peace", "in", "Washington", "DC.", "The", "key", "points", "Schriver", "emphasized", "include", "(1)", "no", "restoration", "of", "US", "security", "assistance", "to", "Pakistan", "before", "the", "war", "in", "Afghanistan", "ends,", "(2)", "possibility", "of", "imposing", "more", "restrictions,", "and", "(3)", "Washington’s", "serious", "concerns", "about", "Pakistan’s", "growing", "economic", "ties", "with", "China.", "The", "complex", "equation", "being", "faced", "by", "Pakistan", "is", "clear:", "Afghanistan-China-Iran-Russia-US-economic", "woes-IMF", "money-proxies-components", "in", "home-dependence-urgency", "of", "the", "situation-and", "others.", "However,", "the", "senior", "US", "official", "said", "that", "the", "Trump", "administration", "was", "willing", "to", "give", "Khan", "some", "“space”", "to", "make", "their", "policies.", "The", "“some", "space”", "doesn’t", "provide", "the", "scope", "to", "escape", "the", "reality", "with", "competing", "demands.", "He", "indicated", "their", "“approach", "of", "cutting", "assistance", "and", "pressuring", "Pakistan", "on", "their", "relationship", "with", "the", "Taliban", "[…]", "will", "be", "sustained.”", "The", "indication", "is", "not", "without", "reason", "and", "not", "without", "meaning.", "The", "US", "has", "to", "move.", "It", "requires", "the", "move.", "It", "has", "limits", "beyond", "which", "it", "can’t", "move.", "The", "situation,", "cropped", "up", "over", "a", "long", "period", "of", "time,", "thus", "turns", "compelling.", "The", "problems", "picture", "a", "fragile", "situation", "also;", "and", "the", "fragile", "situation", "bears", "implication", "for", "many", "others", "in", "the", "region.", "A", "certain", "situation", "compels", "an", "actor", "or", "another", "to", "behave", "in", "a", "way", "or", "to", "have", "a", "different", "approach", "having", "impact", "on", "others", "around.", "Farooque", "Chowdhury", "writes", "from", "Dhaka." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "“The", "US", "has", "delivered", "an", "object", "lesson", "in", "how", "not", "to", "conduct", "diplomacy”,", "said", "the", "first", "sentence", "of", "an", "editorial", "of", "Dawn,", "a", "leading", "Pakistan", "daily.", "(“US", "aid", "cut”,", "September", "3,", "2018)", "The", "claimed", "“object", "lesson”", "was", "in", "reference", "to", "the", "US", "permanent", "aid", "cut", "to", "Pakistan", "of", "$300", "million.", "The", "US", "announcement", "came", "only", "days", "proceeding", "to", "the", "planned", "Pakistan", "visit", "by", "Mike", "Pompeo,", "the", "US", "secretary", "of", "state.", "The", "editorial", "also", "said:", "“[N]ow", "what", "remains", "to", "be", "seen", "is", "if", "Secretary", "Pompeo", "will", "try", "and", "bully", "the", "Pakistani", "leadership", "during", "his", "visit", "or", "if", "he", "will", "be", "deployed", "in", "a", "more", "traditional", "good-cop", "diplomatic", "role.”", "A", "strange", "relationship!", "Once", "it", "was", "strong", "and", "hand", "in", "hand.", "Now", "it’s", "going", "through", "aid", "cuts", "and", "possibility", "of,", "as", "the", "editorial", "said,", "bullying.", "The", "editorial", "also", "said:", "“The", "aid", "cut-off", "is", "not", "new", "[…]", "But", "it", "will", "surely", "rankle", "in", "Pakistan", "and", "rightly", "so:", "more", "than", "the", "aid,", "it", "is", "the", "hectoring", "and", "aggressive", "tone", "of", "the", "Trump", "administration", "towards", "Pakistan", "[…]”", "The", "aid", "cut-background", "is", "broad:", "Spanning", "from", "Pakistan", "to", "Afghanistan", "to", "Iran.", "Only", "days", "ago,", "Javed", "Zarif,", "Iranian", "foreign", "minister,", "had", "a", "warm", "visit", "to", "Islamabad.", "Pakistan,", "according", "to", "the", "editorial,", "“emphasized", "its", "support", "for", "Iran”.", "The", "editorial", "expressed", "its", "assumption:", "The", "support", "“could", "be", "a", "factor", "in", "the", "Trump", "administration’s", "apparent", "pique", "at", "Pakistan.”", "The", "present", "state", "of", "Pakistan’s", "economy", "is", "pushing", "the", "state", "to", "international", "creditors,", "and,", "the", "editorial", "said:", "“[T]he", "US", "has", "already", "indicated", "a", "willingness", "to", "overtly", "bring", "geopolitics", "into", "the", "workings", "of", "the", "IFIs”", "(International", "Financial", "Institutions).", "Who", "imagined", "during", "the", "“golden", "Ziaul", "Huq-days”", "that", "the", "relationship", "would", "face", "such", "a", "state", "of", "friendship", "–", "aid", "cuts", "and", "bullying?", "During", "those", "days", "Pakistan", "was", "the", "kingpin", "in", "the", "US’", "Afghan", "War", "machine.", "The", "US", "desires", "that", "Pakistan’s", "role", "in", "Afghanistan", "should", "move", "along", "the", "US", "designated", "path.", "But,", "Pakistan", "has", "its", "own", "agenda,", "and", "limitation.", "The", "agenda", "has", "developed", "from", "its", "interests", "and", "requirements", "for", "existence.", "The", "limitation", "is", "in-built.", "It", "can’t", "move", "along", "whatever", "path", "it", "likes.", "The", "in-built", "limitation", "is", "the", "brake", "on", "many", "of", "its", "wishes.", "A", "sorry", "state", "being", "constantly", "experienced", "by", "the", "state,", "which", "was", "once", "an", "enthusiastic", "partner", "in", "an", "imperial", "game!", "Once,", "US", "spy", "planes", "used", "to", "take", "off", "from", "Pakistan", "aerodrome", "to", "keep", "an", "eye", "on", "Soviet", "Union.", "Against", "the", "current", "development,", "Raza", "Rabbani,", "a", "People’s", "Party", "senator,", "has", "suggested", "that", "Imran", "Khan,", "the", "Pakistan", "prime", "minister,", "should", "not", "meet", "Pompeo", "during", "his", "visit", "to", "Pakistan", "and", "only", "the", "foreign", "minister", "should", "hold", "talks", "with", "the", "US", "leader.", "(Dawn,", "“Rabbani", "urges", "PM", "not", "to", "meet", "Pompeo”,", "September", "4,", "2018)", "The", "Pak", "senator", "said", "that", "protocol", "demanded", "that", "the", "prime", "minister", "should", "not", "meet", "Pompeo", "as", "whenever", "a", "Pakistani", "prime", "minister", "visited", "the", "US,", "he", "was", "not", "received", "by", "the", "US", "president.", "He", "also", "referred", "to", "the", "aid", "cut", "issue.", "He", "regretted", "that", "Pakistan", "has", "rendered", "a", "number", "of", "sacrifices", "for", "peace;", "but,", "the", "US", "was", "constantly", "asking", "to", "do", "more;", "not", "only", "the", "US", "has", "advised", "the", "IMF", "not", "to", "give", "loan", "to", "Pakistan,", "but", "it", "also", "ended", "military", "training", "program.", "These", "sound", "sad,", "sound", "a", "deep", "pain", "and", "humiliation!", "But,", "what’s", "to", "do?", "A", "reality", "has", "developed", "over", "years", "and", "decades,", "has", "developed", "through", "closest", "possible", "collaboration", "in", "a", "war", "waged", "in", "another", "country", "–", "Afghanistan.", "It’s", "a", "reality", "difficult", "to", "escape.", "The", "reality", "has", "roots", "and", "components,", "which", "go", "unidentified", "by", "a", "quarter.", "The", "components", "are", "spread", "inside", "and", "outside", "of", "the", "country.", "A", "single", "component", "can’t", "reshape", "the", "reality.", "Another", "report", "of", "Dawn", "helps", "look", "into", "the", "jumbled", "reality.", "The", "report", "said:", "“[T]he", "Trump", "administration", "has", "made", "it", "clear", "that", "Pakistan", "will", "have", "to", "back", "the", "US", "strategy", "in", "Afghanistan", "if", "it", "wants", "good", "relations", "with", "Washington.”", "(“US", "spells", "out", "terms", "of", "engagement", "with", "Pakistan”,", "September", "3,", "2018)", "For", "Pakistan,", "it’s", "a", "difficult", "path.", "Can", "it", "back", "the", "US", "strategy?", "What", "shall", "happen", "to", "its", "friendship", "with", "China,", "to", "its", "attempt", "to", "strengthen", "friendship", "with", "Russia,", "to", "the", "warmness", "it", "has", "shown", "to", "Iran", "if", "it", "backs", "the", "US", "strategy?", "How", "much", "wide", "is", "the", "space", "for", "maneuver", "there", "for", "Pakistan?", "On", "the", "other", "hand,", "there’s", "the", "condition", "of", "its", "economy,", "which", "is", "compelling", "it", "to", "have", "a", "hope", "on", "the", "IMF?", "Moreover,", "there", "are", "constituencies", "in", "home,", "which", "are", "to", "be", "coordinated", "with;", "and", "a", "few", "of", "these", "constituencies", "don’t", "depend", "on", "rhetoric,", "but", "on", "economic", "functions.", "The", "US", "strategy" ] ], [ [ ",", "the", "Washington", "datelined", "Dawn", "report", "said,", "is", "“to", "use", "a", "combination", "of", "military", "and", "diplomatic", "pressures", "to", "force", "the", "Taliban", "to", "work", "with", "Kabul", "for", "restoring", "peace", "in", "Afghanistan.”", "The", "case", "thus", "turns", "more", "complex", "as", "there", "are", "other", "countries", "having", "their", "strategies", "in", "the", "case", "of", "Afghanistan,", "and", "those", "strategies", "are", "not", "always", "in", "cohesion", "with", "the", "US", "strategy", "and", "Pakistani", "interest.", "The", "report", "indicated", "that", "Washington", "is", "looking", "for", "ways", "for", "an", "honorable", "withdrawal", "of", "its", "troops", "from", "Afghanistan.", "Shall", "its", "competitors", "provide", "it", "the", "opportunity?", "How", "shall", "Pakistan", "coordinate", "between", "the", "competing", "interests,", "a", "few", "of", "which", "it", "can’t", "deny,", "if", "the", "opportunity", "is", "not", "provided", "to", "the", "US", "by", "its", "competitors?", "What", "shall", "happen", "if", "Washington", "likes", "to", "employ", "its", "proxies", "in", "a", "part", "of", "Afghanistan?", "For", "Pakistan,", "it’s", "a", "difficult", "account", "to", "reconcile.", "The", "Dawn", "report", "referred", "to", "a", "telephone", "conversation", "between", "Pompeo", "and", "Khan", "last", "week:", "Pompeo", "asked", "Khan", "to", "take", "“decisive", "action", "against", "all", "terrorists", "operating", "in", "Pakistan”.", "A", "tough", "asking", "from", "a", "friend!", "But", "the", "US", "was", "sending", "the", "same", "message", "with", "almost", "the", "same", "tone", "over", "a", "long", "period", "of", "time.", "How", "long", "can", "it", "be", "ignored", "while", "the", "economy", "needs", "IMF’s", "helping", "hands?", "“Initially”,", "the", "Dawn", "report", "said,", "“Islamabad", "disputed", "the", "US", "version", "of", "this", "conversation,", "but", "later", "withdrew", "its", "objection.”", "Not", "an", "honorable", "and", "efficient", "show!", "The", "corner", "will", "appear", "very", "narrow", "for", "Pakistan", "if", "it", "comes", "out", "that", "the", "positions", "of", "Washington", "and", "of", "a", "few", "other", "powerful", "countries,", "on", "which", "Pakistan", "relies", "or", "is", "trying", "to", "rely,", "are", "the", "same:", "“decisive", "action", "against", "…", "”?", "The", "Dawn", "report", "referred", "to", "a", "talk", "by", "Randall", "G", "Schriver,", "the", "US", "assistant", "secretary", "of", "defence", "for", "Asian", "and", "Pacific", "security", "affairs,", "delivered", "at", "the", "Carnegie", "Endowment", "for", "International", "Peace", "in", "Washington", "DC.", "The", "key", "points", "Schriver", "emphasized", "include", "(1)", "no", "restoration", "of", "US", "security", "assistance", "to", "Pakistan", "before", "the", "war", "in", "Afghanistan", "ends,", "(2)", "possibility", "of", "imposing", "more", "restrictions,", "and", "(3)", "Washington’s", "serious", "concerns", "about", "Pakistan’s", "growing", "economic", "ties", "with", "China.", "The", "complex", "equation", "being", "faced", "by", "Pakistan", "is", "clear:", "Afghanistan-China-Iran-Russia-US-economic", "woes-IMF", "money-proxies-components", "in", "home-dependence-urgency", "of", "the", "situation-and", "others.", "However,", "the", "senior", "US", "official", "said", "that", "the", "Trump", "administration", "was", "willing", "to", "give", "Khan", "some", "“space”", "to", "make", "their", "policies.", "The", "“some", "space”", "doesn’t", "provide", "the", "scope", "to", "escape", "the", "reality", "with", "competing", "demands.", "He", "indicated", "their", "“approach", "of", "cutting", "assistance", "and", "pressuring", "Pakistan", "on", "their", "relationship", "with", "the", "Taliban", "[…]", "will", "be", "sustained.”", "The", "indication", "is", "not", "without", "reason", "and", "not", "without", "meaning.", "The", "US", "has", "to", "move.", "It", "requires", "the", "move.", "It", "has", "limits", "beyond", "which", "it", "can’t", "move.", "The", "situation,", "cropped", "up", "over", "a", "long", "period", "of", "time,", "thus", "turns", "compelling.", "The", "problems", "picture", "a", "fragile", "situation", "also;", "and", "the", "fragile", "situation", "bears", "implication", "for", "many", "others", "in", "the", "region.", "A", "certain", "situation", "compels", "an", "actor", "or", "another", "to", "behave", "in", "a", "way", "or", "to", "have", "a", "different", "approach", "having", "impact", "on", "others", "around.", "Farooque", "Chowdhury", "writes", "from", "Dhaka." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "A", "Dutch", "vegan", "who", "was", "denied", "Swiss", "citizenship", "twice", "for", "being", "'too", "annoying'", "has", "finally", "won", "her", "passport.", "Nancy", "Holten,", "now", "43,", "has", "lived", "in", "Switzerland", "since", "she", "was", "eight,", "speaks", "fluent", "Swiss-German", "and", "has", "children", "who", "are", "citizens.", "But", "she", "was", "turned", "down", "by", "locals", "in", "her", "village", "of", "Gipf-Oberfrick", "who", "were", "irritated", "by", "her", "campaigns", "against", "suing", "cowbells", "because", "they", "are", "cruel", "to", "animals.", "Nancy", "Holten,", "43,", "a", "Dutch", "animal", "rights", "campaigner,", "has", "been", "granted", "Swiss", "citizenship", "two", "years", "after", "she", "first", "applied", "(pictured", "celebrating", "the", "decision)", "Ms", "Holten", "was", "turned", "down", "twice", "by", "locals", "in", "her", "village", "of", "Gipf-Oberfrick", "who", "were", "irritated", "by", "her", "campaigners", "to", "stop", "the", "use", "of", "traditional", "cowbells", "for", "being", "'cruel'", "Ms", "Holten", "also", "campaigned", "over", "village", "church", "bells", "being", "too", "loud,", "and", "spoke", "out", "against", "piglet", "racing", "and", "hunting,", "often", "on", "national", "television.", "After", "being", "denied", "citizenship", "by", "a", "local", "council", "back", "in", "January,", "Ms", "Holten", "appealed", "to", "state", "authorities", "who", "overruled", "the", "decision,", "The", "Local", "reports.", "The", "canton", "of", "Aargau", "took", "the", "decision", "on", "Friday", "last", "week,", "saying", "she", "met", "'all", "the", "prerequisites", "for", "naturalization'.", "Ms", "Holten", "celebrated", "the", "announcement", "on", "Twitter,", "holding", "a", "copy", "of", "a", "local", "paper", "with", "her", "picture", "on", "the", "front", "page,", "writing:", "'I", "simply", "radiate.'", "She", "told", "The", "Local", "that", "she", "is'relieved'", "to", "be", "granted", "citizenship,", "though", "the", "decision", "still", "needs", "to", "be", "ratified", "in", "the", "coming", "weeks.", "She", "revealed", "that", "she", "has", "been", "the", "victim", "of", "threats", "and", "bullying", "since", "finding", "fame,", "and", "has", "considered", "moving", "from", "her", "village.", "She", "told", "The", "Local:", "'It", "is", "no", "longer", "very", "pleasant", "here,", "even", "though", "there", "are", "people", "in", "the", "village", "who", "have", "been", "supportive.", "'I've", "stayed", "for", "the", "sake", "of", "the", "children.", "They", "live", "in", "this", "village,", "have", "their", "friends", "here,", "and", "go", "to", "school", "here", "and", "this", "is", "their", "home", "environment.", "'Perhaps", "I", "will", "move", "to", "the", "next", "village.", "We'll", "see.'", "Ms", "Holten,", "who", "now", "has", "a", "TV", "show", "and", "book", "deal", "after", "her", "case", "attracted", "international", "attention,", "says", "she", "has", "been", "the", "victim", "of", "bullying", "and", "is", "considering", "moving", "Ms", "Holten", "believes", "traditional", "cowbells", "used", "in", "Switzerland", "(pictured)", "are", "too", "loud", "and", "heavy", "Any", "villagers", "missing", "Ms", "Holten", "will", "be", "able", "to", "catch", "up", "with", "her", "on", "TV", "station", "Schweiz", "5", "after", "she", "was", "given", "her", "own", "show,", "set", "to", "air", "over", "the", "summer.", "She", "also", "has", "a", "book", "coming", "out,", "and", "uses", "her", "YouTube", "channel", "to", "campaign", "on", "animal", "welfare", "issues.", "Ms", "Holten,", "who", "describes", "herself", "online", "as", "a", "TV", "presenter,", "YouTuber,", "freelance", "journalist,", "actress,", "IT-woman", "and", "model,", "first", "applied", "for", "a", "passport", "back", "in", "2015.", "That", "resulted", "in", "the", "citizens", "of", "Gipf-Oberfrick", "holding", "a", "referendum,", "which", "saw", "her", "denied", "by", "a", "vote", "of", "144-62.", "Local", "politician", "Tanja", "Suter", "said", "Holten", "had", "a", "'big", "mouth',", "and", "did", "not", "deserve", "to", "get", "a", "Swiss", "passport", "'if", "she", "irritates", "us", "and", "does", "not", "respect", "our", "traditions.'", "The", "publicity", "the", "case", "generated", "earned", "Ms", "Holten", "frequent", "spots", "on", "TV", "which", "she", "used", "to", "plug", "her", "campaign", "against", "the", "cowbells", "-", "saying", "they", "were", "too", "loud", "for", "the", "animals", "to", "have", "near", "their", "ears", "and", "too", "heavy.", "Local", "residents", "in", "Switzerland", "often", "have", "a", "say", "in", "citizenship", "applications,", "which", "are", "decided", "by", "councils", "where", "the", "applicants", "live", "rather", "than", "the", "federal", "government." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "A", "Dutch", "vegan", "who", "was", "denied", "Swiss", "citizenship", "twice", "for", "being", "'too", "annoying'", "has", "finally", "won", "her", "passport.", "Nancy", "Holten,", "now", "43,", "has", "lived", "in", "Switzerland", "since", "she", "was", "eight,", "speaks", "fluent", "Swiss-German", "and", "has", "children", "who", "are", "citizens.", "But", "she", "was", "turned", "down", "by", "locals", "in", "her", "village", "of", "Gipf-Oberfrick", "who", "were", "irritated", "by", "her", "campaigns", "against", "suing", "cowbells", "because", "they", "are", "cruel", "to", "animals.", "Nancy", "Holten,", "43,", "a", "Dutch", "animal", "rights", "campaigner,", "has", "been", "granted", "Swiss", "citizenship", "two", "years", "after", "she", "first", "applied", "(pictured", "celebrating", "the", "decision)", "Ms", "Holten", "was", "turned", "down", "twice", "by", "locals", "in", "her", "village", "of", "Gipf-Oberfrick", "who", "were", "irritated", "by", "her", "campaigners", "to", "stop", "the", "use", "of", "traditional", "cowbells", "for", "being", "'cruel'", "Ms", "Holten", "also", "campaigned", "over", "village", "church", "bells", "being", "too", "loud,", "and", "spoke", "out", "against", "piglet", "racing", "and", "hunting,", "often", "on", "national", "television.", "After", "being", "denied", "citizenship", "by", "a", "local", "council", "back", "in", "January,", "Ms", "Holten", "appealed", "to", "state", "authorities", "who", "overruled", "the", "decision,", "The", "Local", "reports.", "The", "canton", "of", "Aargau", "took", "the", "decision", "on", "Friday", "last", "week,", "saying", "she", "met", "'all", "the", "prerequisites", "for", "naturalization'.", "Ms", "Holten", "celebrated", "the", "announcement", "on", "Twitter,", "holding", "a", "copy", "of", "a", "local", "paper", "with", "her", "picture", "on", "the", "front", "page,", "writing:", "'I", "simply", "radiate.'", "She", "told", "The", "Local", "that", "she", "is'relieved'", "to", "be", "granted", "citizenship,", "though", "the", "decision", "still", "needs", "to", "be", "ratified", "in", "the", "coming", "weeks.", "She", "revealed", "that", "she", "has", "been", "the", "victim", "of", "threats", "and", "bullying", "since", "finding", "fame,", "and", "has", "considered", "moving", "from", "her", "village.", "She", "told", "The", "Local:", "'It", "is", "no", "longer", "very", "pleasant", "here,", "even", "though", "there", "are", "people", "in", "the", "village", "who", "have", "been", "supportive.", "'I've", "stayed", "for", "the", "sake", "of", "the", "children.", "They", "live", "in", "this", "village,", "have", "their", "friends", "here,", "and", "go", "to", "school", "here", "and", "this", "is", "their", "home", "environment.", "'Perhaps", "I", "will", "move", "to", "the", "next", "village.", "We'll", "see.'", "Ms", "Holten,", "who", "now", "has", "a", "TV", "show", "and", "book", "deal", "after", "her", "case", "attracted", "international", "attention,", "says", "she", "has", "been", "the", "victim", "of", "bullying", "and", "is", "considering", "moving", "Ms", "Holten", "believes", "traditional", "cowbells", "used", "in", "Switzerland", "(pictured)", "are", "too", "loud", "and", "heavy", "Any", "villagers", "missing", "Ms", "Holten", "will", "be", "able", "to", "catch", "up", "with", "her", "on", "TV" ], [ "after", "she", "was", "given", "her", "own", "show,", "set", "to", "air", "over", "the", "summer.", "She", "also", "has", "a", "book", "coming", "out,", "and", "uses", "her", "YouTube", "channel", "to", "campaign", "on", "animal", "welfare", "issues.", "Ms", "Holten,", "who", "describes", "herself", "online", "as", "a", "TV", "presenter,", "YouTuber,", "freelance", "journalist,", "actress,", "IT-woman", "and", "model,", "first", "applied", "for", "a", "passport", "back", "in", "2015.", "That", "resulted", "in", "the", "citizens", "of", "Gipf-Oberfrick", "holding", "a", "referendum,", "which", "saw", "her", "denied", "by", "a", "vote", "of", "144-62.", "Local", "politician", "Tanja", "Suter", "said", "Holten", "had", "a", "'big", "mouth',", "and", "did", "not", "deserve", "to", "get", "a", "Swiss", "passport", "'if", "she", "irritates", "us", "and", "does", "not", "respect", "our", "traditions.'", "The", "publicity", "the", "case", "generated", "earned", "Ms", "Holten", "frequent", "spots", "on", "TV", "which", "she", "used", "to", "plug", "her", "campaign", "against", "the", "cowbells", "-", "saying", "they", "were", "too", "loud", "for", "the", "animals", "to", "have", "near", "their", "ears", "and", "too", "heavy.", "Local", "residents", "in", "Switzerland", "often", "have", "a", "say", "in", "citizenship", "applications,", "which", "are", "decided", "by", "councils", "where", "the", "applicants", "live", "rather", "than", "the", "federal", "government." ] ] ]
[ [ "en", "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Zobacz", "wideo", "Jak", "zauważa", "\"Landeszeitung\"", "z", "Lüneburga:", "REKLAMA", "\"U", "kołyski", "A", "380", "stała", "decyzja", "polityczna,", "a", "przy", "jego", "katafalku", "ekonomiczna.", "Na", "przełomie", "XX", "i", "XXI", "wieku", "w", "Europie", "panowała", "euforia.", "EU", "zafundowała", "sobie", "wspólną", "walutę", "europejską.", "Wkrótce", "miała", "zacząć", "rozszerzać", "się", "na", "wschód.", "W", "tamtych", "czasach", "zapadła", "decyzja", "o", "budowie", "największego", "samolotu", "pasażerskiego", "na", "świecie,", "aby", "udowodnić,", "że", "Europa", "jest", "na", "tym", "samym", "poziomie", "technicznym", "co", "USA.", "I", "to", "się", "udało.", "Airbus", "A380", "zyskał", "rangę", "symbolu", "i", "stał", "się", "czymś", "w", "rodzaju", "latającego", "euro.", "Niestety", "pod", "względem", "ekonomicznym", "była", "to", "decyzja", "chybiona.", "Z", "drugiej", "strony", "w", "A380", "należy", "widzieć", "pierwszy", "impuls", "w", "kierunku", "stawienia", "czoła", "USA", "w", "polityce", "i", "gospodarce,", "aby", "zdobyć", "niezależność", "strategiczną,", "co", "w", "obliczu", "nieprzewidywalności", "rządu", "Trumpa", "jest", "zadaniem", "bardziej", "aktualnym", "niż", "kiedykolwiek", "przedtem\".", "Czytaj", "też:", "Koniec", "produkcji", "największego", "pasażerskiego", "samolotu", "na", "świecie.", "Pożegnajcie", "A380", "\"Frankfurter", "Rundschau\"", "pisze:", "\"Imponujące", "rozmiary", "A380", "i", "związana", "z", "nimi", "pycha", "menedżerów,", "polityków", "i", "inżynierów", "sprawiły,", "że", "na", "jego", "pogrzebie", "musi", "teraz", "rozlec", "się", "dźwięk", "dzwonów", "żałobnych.", "Był", "to", "najbardziej", "ambitny", "projekt", "w", "historii", "europejskiego", "lotnictwa.", "Propagowali", "go", "zwłaszcza", "politycy", "francuscy,", "żeby", "pokazać", "USA", "i", "reszcie", "świata,", "że", "dysponują", "największym", "samolotem", "pasażerskim", "na", "kuli", "ziemskiej.", "Na", "przykładzie", "airbusa", "A380", "można", "idealnie", "wręcz", "udowodnić,", "że", "to,", "co", "jest", "możliwe", "pod", "względem", "technicznym,", "niekoniecznie", "musi", "być", "przedsięwzięciem", "opłacalnym", "ekonomicznie\".", "\"Westfälische", "Nachrichten\"", "z", "Münster", "zwraca", "uwagę,", "że:", "\"W", "ostatnich", "latach", "komunikacja", "lotnicza", "uległa", "gruntownym", "zmianom.", "Linie", "lotnicze", "wolą", "wysłać", "na", "jedną", "trasę", "dwa", "samoloty", "średniej", "wielkości,", "niż", "ponosić", "straty", "wskutek", "niepełnego", "wykorzystania", "miejsc", "w", "takim", "powietrznym", "gigancie", "jak", "A380.", "W", "ten", "sposób", "mogą", "działać", "elastyczniej", "i", "zwiększają", "na", "trwałe", "wypełnienie", "miejsc", "w", "maszynie.", "Do", "tego", "dochodzi", "jeszcze", "to,", "że", "chińskie", "towarzystwa", "lotnicze", "konsekwentnie" ], [ "odmawiały", "nabycia", "największego", "europejskiego", "statku", "powietrznego.", "A", "bez", "wejścia", "na", "ten", "największy", "i", "najszybciej", "rozwijający", "się", "rynek", "na", "świecie", "projekt", "A380", "nie", "miał", "szans", "powodzenia.", "Decyzja", "kierownictwa", "koncernu", "Airbusa", "nastąpiła", "w", "porę.", "Zamiast", "inwestować", "jeszcze", "więcej", "pieniędzy", "w", "model", "A380,", "który", "w", "oczywisty", "sposób", "nie", "ma", "przed", "sobą", "przyszłości,", "dla", "pracowników", "koncernu", "i", "jego", "akcjonariuszy", "lepsze", "jest", "wydanie", "ich", "na", "nowe", "projekty", "mniejszych", "samolotów.", "Tylko", "w", "ten", "sposób", "Airbus", "może", "stawić", "czoło", "swemu", "największemu", "konkurentowi", "-", "Boeingowi\".", "Podobnie", "widzi", "to", "komentator", "\"Lübecker", "Nachrichten\":", "\"Dumni", "planiści", "projektu", "A380", "wielokrotnie", "się", "przeliczyli.", "Nie", "docenili", "ciężaru", "tego", "wielkiego", "samolotu", "i", "związanego", "z", "nim", "dużego", "zużycia", "paliwa.", "Mimo", "to", "koncern", "Airbusa", "odzyskał", "w", "2015", "roku", "nakłady", "wydane", "na", "rozwój", "tej", "maszyny", "dzięki", "pomocy", "finansowej", "państwa.", "Przedwczesne", "zakończenie", "tego", "projektu", "oznacza", "teraz", "stratę", "dla", "niemieckich", "podatników\".", "\"Straubinger", "Tagblatt/Landshuter", "Zeitung\"", "stwierdza:", "\"Airbus", "pociągnął", "teraz", "za", "hamulec", "bezpieczeństwa.", "Zasada", "«Więcej", "pasażerów", "oznacza", "większe", "zyski»", "nie", "sprawdziła", "się", "tak,", "jak", "tego", "oczekiwano.", "Airbusa", "A380", "długo", "jeszcze", "będziemy", "oglądać", "na", "niebie.", "Entuzjaści", "lotnictwa", "mają", "zatem", "powód", "do", "radości.", "Ale", "także", "w", "lotnictwie", "obowiązuje", "prawo,", "że", "zmniejszone", "zużycie", "paliwa", "i", "ekonomiczne", "użytkowanie", "samolotu", "liczy", "się", "bardziej", "niż", "największy", "nawet", "prestiż\"", "Kropkę", "nad", "i", "stawia", "\"Frankfurter", "Allgemeine", "Zeitung\":", "\"A380", "oznacza", "dla", "jego", "producenta,", "koncernu", "Airbusa,", "podwójną", "pomyłkę:", "przecenienie", "własnych", "sił", "i", "popytu", "na", "ten", "samolot", "ze", "strony", "linii", "lotniczych.", "Ten", "powietrzny", "gigant", "pojawił", "się", "na", "świecie", "tylko", "wskutek", "porodu", "kleszczowego,", "co", "brutalnie", "udowodniły", "ostre", "tarcia", "w", "obrębie", "koncernu.", "Europejskie", "fabryki", "uczestniczące", "w", "tym", "projekcie", "w", "większym", "stopniu", "walczyły", "ze", "sobą", "niż", "współpracowały.", "Trzeba", "było", "wymienić", "w", "nich", "znaczną", "liczbę", "menedżerów.", "Ale", "wszystko", "to", "nie", "miało", "wpływu", "na", "błędne", "decyzje.", "Największy", "rywal", "Airbusa,", "amerykański", "Boeing,", "wiedział", "ju" ], [ "ż", "wtedy,", "dlaczego", "nie", "przystąpił", "do", "produkcji", "następcy", "czterosilnikowego", "modelu", "747.", "Wcześniej", "niż", "Airbus", "postawił", "na", "mniejsze", "samoloty,", "dysponujące", "jednak", "wyjątkowo", "dużym", "zasięgiem,", "tak", "by", "pasażerowie", "mogli", "dotrzeć", "do", "celu", "bez", "kłopotliwych", "przesiadek\"." ] ]
[ [ "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "es", "es", "es", "es", "co", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "de", "de", "de", "de", "es", "es", "nl", "nl", "nl", "nl", "nl", "nl", "de", "en", "nl", "nl", "nl", "pt", "de", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "co", "co", "co", "co", "co", "nl", "nl", "de", "de", "de", "de", "en", "es", "es", "es", "es", "nl", "en", "en", "en", "en", "de", "de", "de", "de", "co", "co", "co", "co", "en", "en", "en", "en", "en", "es", "es", "es", "es", "de", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "co", "co", "es", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "it", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "pt", "nl", "nl", "nl", "de", "de", "de", "de", "de" ], [ "nl", "nl", "nl", "nl", "nl", "nl", "pt", "pt", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "ro", "ro", "ro", "ro", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "de", "de", "de", "co", "co", "co", "co", "co", "co", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "pt", "pt", "pt", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "nl", "nl", "nl", "nl", "de", "de", "de", "pt", "pt", "pt", "pt", "es", "en", "en", "en", "en", "en", "co", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "pt", "pt", "pt", "pt", "pt", "nl", "nl", "nl", "de", "de", "ro", "ro", "ro", "pt", "pt", "pt", "pt", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "es", "de", "de", "de", "co", "co", "co", "co", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "en", "en", "en", "en", "en", "de", "de", "de", "de", "ro", "en", "en", "en", "en", "de", "co", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "nl" ], [ "de", "de", "nl", "en", "en", "pt", "pt", "co", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "nl", "pt", "pt", "co", "de", "de" ] ]
[ [ [ "Zobacz", "wideo", "Jak", "zauważa", "\"Landeszeitung\"", "z", "Lüneburga:", "REKLAMA", "\"U", "kołyski", "A", "380", "stała", "decyzja", "polityczna,", "a", "przy", "jego", "katafalku", "ekonomiczna.", "Na", "przełomie", "XX", "i", "XXI", "wieku", "w", "Europie", "panowała", "euforia.", "EU", "zafundowała", "sobie", "wspólną", "walutę", "europejską.", "Wkrótce", "miała", "zacząć", "rozszerzać", "się", "na", "wschód.", "W", "tamtych", "czasach", "zapadła", "decyzja", "o", "budowie", "największego", "samolotu", "pasażerskiego", "na", "świecie,", "aby", "udowodnić,", "że", "Europa", "jest", "na", "tym", "samym", "poziomie", "technicznym", "co", "USA.", "I", "to", "się", "udało.", "Airbus", "A380", "zyskał", "rangę", "symbolu", "i", "stał", "się", "czymś", "w", "rodzaju", "latającego", "euro.", "Niestety", "pod", "względem", "ekonomicznym", "była", "to", "decyzja", "chybiona.", "Z", "drugiej", "strony", "w", "A380", "należy", "widzieć", "pierwszy", "impuls", "w", "kierunku", "stawienia", "czoła", "USA", "w", "polityce", "i", "gospodarce,", "aby", "zdobyć", "niezależność", "strategiczną,", "co", "w", "obliczu", "nieprzewidywalności", "rządu", "Trumpa", "jest", "zadaniem", "bardziej", "aktualnym", "niż", "kiedykolwiek", "przedtem\".", "Czytaj", "też:", "Koniec", "produkcji", "największego", "pasażerskiego", "samolotu", "na", "świecie.", "Pożegnajcie", "A380", "\"Frankfurter", "Rundschau\"", "pisze:", "\"Imponujące", "rozmiary", "A380", "i", "związana", "z", "nimi", "pycha", "menedżerów,", "polityków", "i", "inżynierów", "sprawiły,", "że", "na", "jego", "pogrzebie", "musi", "teraz", "rozlec", "się", "dźwięk", "dzwonów", "żałobnych.", "Był", "to", "najbardziej", "ambitny", "projekt", "w", "historii", "europejskiego", "lotnictwa.", "Propagowali", "go", "zwłaszcza", "politycy", "francuscy,", "żeby", "pokazać", "USA", "i", "reszcie", "świata,", "że", "dysponują", "największym", "samolotem", "pasażerskim", "na", "kuli", "ziemskiej.", "Na", "przykładzie", "airbusa", "A380", "można", "idealnie", "wręcz", "udowodnić,", "że", "to,", "co", "jest", "możliwe", "pod", "względem", "technicznym,", "niekoniecznie", "musi", "być", "przedsięwzięciem", "opłacalnym", "ekonomicznie\".", "\"Westfälische", "Nachrichten\"", "z", "Münster", "zwraca", "uwagę,", "że:", "\"W", "ostatnich", "latach", "komunikacja", "lotnicza", "uległa", "gruntownym", "zmianom.", "Linie", "lotnicze", "wolą", "wysłać", "na", "jedną", "trasę", "dwa", "samoloty", "średniej", "wielkości,", "niż", "ponosić", "straty", "wskutek", "niepełnego", "wykorzystania", "miejsc", "w", "takim", "powietrznym", "gigancie", "jak", "A380.", "W", "ten", "sposób", "mogą", "działać", "elastyczniej", "i", "zwiększają", "na", "trwałe", "wypełnienie", "miejsc", "w", "maszynie.", "Do", "tego", "dochodzi", "jeszcze", "to,", "że", "chińskie", "towarzystwa", "lotnicze", "konsekwentnie" ] ], [ [ "odmawiały", "nabycia", "największego", "europejskiego", "statku", "powietrznego.", "A", "bez", "wejścia", "na", "ten", "największy", "i", "najszybciej", "rozwijający", "się", "rynek", "na", "świecie", "projekt", "A380", "nie", "miał", "szans", "powodzenia.", "Decyzja", "kierownictwa", "koncernu", "Airbusa", "nastąpiła", "w", "porę.", "Zamiast", "inwestować", "jeszcze", "więcej", "pieniędzy", "w", "model", "A380,", "który", "w", "oczywisty", "sposób", "nie", "ma", "przed", "sobą", "przyszłości,", "dla", "pracowników", "koncernu", "i", "jego", "akcjonariuszy", "lepsze", "jest", "wydanie", "ich", "na", "nowe", "projekty", "mniejszych", "samolotów.", "Tylko", "w", "ten", "sposób", "Airbus", "może", "stawić", "czoło", "swemu", "największemu", "konkurentowi", "-", "Boeingowi\".", "Podobnie", "widzi", "to", "komentator", "\"Lübecker", "Nachrichten\":", "\"Dumni", "planiści", "projektu", "A380", "wielokrotnie", "się", "przeliczyli.", "Nie", "docenili", "ciężaru", "tego", "wielkiego", "samolotu", "i", "związanego", "z", "nim", "dużego", "zużycia", "paliwa.", "Mimo", "to", "koncern", "Airbusa", "odzyskał", "w", "2015", "roku", "nakłady", "wydane", "na", "rozwój", "tej", "maszyny", "dzięki", "pomocy", "finansowej", "państwa.", "Przedwczesne", "zakończenie", "tego", "projektu", "oznacza", "teraz", "stratę", "dla", "niemieckich", "podatników\".", "\"Straubinger", "Tagblatt/Landshuter", "Zeitung\"", "stwierdza:", "\"Airbus", "pociągnął", "teraz", "za", "hamulec", "bezpieczeństwa.", "Zasada", "«Więcej", "pasażerów", "oznacza", "większe", "zyski»", "nie", "sprawdziła", "się", "tak,", "jak", "tego", "oczekiwano.", "Airbusa", "A380", "długo", "jeszcze", "będziemy", "oglądać", "na", "niebie.", "Entuzjaści", "lotnictwa", "mają", "zatem", "powód", "do", "radości.", "Ale", "także", "w", "lotnictwie", "obowiązuje", "prawo,", "że", "zmniejszone", "zużycie", "paliwa", "i", "ekonomiczne", "użytkowanie", "samolotu", "liczy", "się", "bardziej", "niż", "największy", "nawet", "prestiż\"", "Kropkę", "nad", "i", "stawia", "\"Frankfurter", "Allgemeine", "Zeitung\":", "\"A380", "oznacza", "dla", "jego", "producenta,", "koncernu", "Airbusa,", "podwójną", "pomyłkę:", "przecenienie", "własnych", "sił", "i", "popytu", "na", "ten", "samolot", "ze", "strony", "linii", "lotniczych.", "Ten", "powietrzny", "gigant", "pojawił", "się", "na", "świecie", "tylko", "wskutek", "porodu", "kleszczowego,", "co", "brutalnie", "udowodniły", "ostre", "tarcia", "w", "obrębie", "koncernu.", "Europejskie", "fabryki", "uczestniczące", "w", "tym", "projekcie", "w", "większym", "stopniu", "walczyły", "ze", "sobą", "niż", "współpracowały.", "Trzeba", "było", "wymienić", "w", "nich", "znaczną", "liczbę", "menedżerów.", "Ale", "wszystko", "to", "nie", "miało", "wpływu", "na", "błędne", "decyzje.", "Największy", "rywal", "Airbusa,", "amerykański", "Boeing,", "wiedział", "ju" ] ], [ [ "ż", "wtedy,", "dlaczego", "nie", "przystąpił", "do", "produkcji", "następcy", "czterosilnikowego", "modelu", "747.", "Wcześniej", "niż", "Airbus", "postawił", "na", "mniejsze", "samoloty,", "dysponujące", "jednak", "wyjątkowo", "dużym", "zasięgiem,", "tak", "by", "pasażerowie", "mogli", "dotrzeć", "do", "celu", "bez", "kłopotliwych", "przesiadek\"." ] ] ]
[ [ "de" ], [ "nl" ], [ "de" ] ]
[ "mono" ]
[ [ "Sun", "Zhengcai,", "a", "front", "runner", "to", "the", "Chinese", "Communist", "Party", "policy", "body,", "has", "been", "expelled", "(File)", "China's", "ruling", "Communist", "Party", "today", "expelled", "Sun", "Zhengcai,", "a", "rising", "political", "star", "and", "frontrunner", "to", "the", "key", "policy", "body,", "for", "serious", "discipline", "violations", "ahead", "of", "next", "month's", "key", "Congress,", "state", "media", "reported", "today.Sun,", "53,", "a", "politburo", "member,", "was", "once", "regarded", "as", "a", "frontrunner", "to", "the", "key", "policy", "body", "of", "the", "ruling", "Communist", "Party", "of", "China", "(CPC).He", "has", "also", "been", "stripped", "of", "all", "official", "titles,", "two", "months", "after", "his", "shock", "downfall", "and", "just", "weeks", "before", "a", "key", "five-yearly", "leadership", "reshuffle,", "the", "report", "said.His", "expulsion", "comes", "ahead", "of", "the", "19th", "CPC", "Congress", "which", "is", "expected", "to", "endorse", "a", "second", "five-year", "term", "for", "Chinese", "President", "and", "party", "leader", "Xi", "Jinping.Thousands", "of", "officials", "have", "been", "punished", "in", "the", "massive", "anti-corruption", "campaign", "launched", "by", "Xi", "who", "has", "also", "faced", "allegations", "of", "effectively", "using", "the", "drive", "to", "consolidate", "his", "hold", "over", "the", "party", "and", "the", "government", "in", "his", "first", "term.The", "investigation", "found", "that", "Sun", "had", "betrayed", "party", "principles", "and", "lost", "political", "stance,", "ignoring", "the", "party", "code", "of", "conduct", "and", "rules,", "Xinhua", "quoted", "an", "official", "statement", "as", "saying.Sun,", "once", "seen", "as", "a", "frontrunner", "for", "a", "seat", "in", "the", "political", "inner", "sanctum,", "the", "Politburo", "Standing", "Committee,", "was", "unceremoniously", "removed", "as", "Chongqing's", "party", "boss", "and", "put", "under", "investigation", "by", "party", "graft-busters", "in", "July", "for", "\"serious", "violations", "of", "party", "discipline\",", "Hong", "Kong-based", "South", "China", "Morning", "Post", "reported", "today.He", "was", "also", "found", "to", "have", "seriously", "violated", "the", "CPC", "eight-point", "code", "on", "frugality", "and", "maintaining", "close", "ties", "with", "the", "masses,", "sought", "pomp,", "ostentation", "and", "privileges", "and", "guilty", "of", "nepotism", "and", "seeking", "benefits", "in", "selection", "of", "officials.He", "was", "also", "found", "guilty", "of", "leaking", "confidential", "party", "information", "and", "seriously", "breaching", "party", "rules", "on", "integrity,", "took", "advantage", "of", "his", "power", "and", "influence", "and", "sought", "substantial", "benefits", "for", "his", "relatives'", "businesses", "and", "accepted", "valuable", "gifts,", "Xinhua", "said.The", "announcement", "of", "his", "expulsion", "from", "the", "party", "means", "he", "will", "also", "be", "removed", "from", "the", "25-member", "politburo,", "the", "party's", "powerful", "decision-making", "body.", "Sun", "had", "been", "handed", "over", "to", "judicial", "authorities", "for", "further", "investigation,", "the", "report", "added." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Sun", "Zhengcai,", "a", "front", "runner", "to", "the", "Chinese", "Communist", "Party", "policy", "body,", "has", "been", "expelled", "(File)", "China's", "ruling", "Communist", "Party", "today", "expelled", "Sun", "Zhengcai,", "a", "rising", "political", "star", "and", "frontrunner", "to", "the", "key", "policy", "body,", "for", "serious", "discipline", "violations", "ahead", "of", "next", "month's", "key", "Congress,", "state", "media", "reported", "today.Sun,", "53,", "a", "politburo", "member,", "was", "once", "regarded", "as", "a", "frontrunner", "to", "the", "key", "policy", "body", "of", "the", "ruling", "Communist", "Party", "of", "China", "(CPC).He", "has", "also", "been", "stripped", "of", "all", "official", "titles,", "two", "months", "after", "his", "shock", "downfall", "and", "just", "weeks", "before", "a", "key", "five-yearly", "leadership", "reshuffle,", "the", "report", "said.His", "expulsion", "comes", "ahead", "of", "the", "19th", "CPC", "Congress", "which", "is", "expected", "to", "endorse", "a", "second", "five-year", "term", "for", "Chinese", "President", "and", "party", "leader", "Xi", "Jinping.Thousands", "of", "officials", "have", "been", "punished", "in", "the", "massive", "anti-corruption", "campaign", "launched", "by", "Xi", "who", "has", "also", "faced", "allegations", "of", "effectively", "using", "the", "drive", "to", "consolidate", "his", "hold", "over", "the", "party", "and", "the", "government", "in", "his", "first", "term.The", "investigation", "found", "that", "Sun", "had", "betrayed", "party", "principles", "and", "lost", "political", "stance,", "ignoring", "the", "party", "code", "of", "conduct", "and", "rules,", "Xinhua", "quoted", "an", "official", "statement", "as", "saying.Sun,", "once", "seen", "as", "a", "frontrunner", "for", "a", "seat", "in", "the", "political", "inner", "sanctum,", "the", "Politburo", "Standing", "Committee,", "was", "unceremoniously", "removed", "as", "Chongqing's", "party", "boss", "and", "put", "under", "investigation", "by", "party", "graft-busters", "in", "July", "for", "\"serious", "violations", "of", "party", "discipline\",", "Hong", "Kong-based", "South", "China", "Morning", "Post", "reported", "today.He", "was", "also", "found", "to", "have", "seriously", "violated", "the", "CPC", "eight-point", "code", "on", "frugality", "and", "maintaining", "close", "ties", "with", "the", "masses,", "sought", "pomp,", "ostentation", "and", "privileges", "and", "guilty", "of", "nepotism", "and", "seeking", "benefits", "in", "selection", "of", "officials.He", "was", "also", "found", "guilty", "of", "leaking", "confidential", "party", "information", "and", "seriously", "breaching", "party", "rules", "on", "integrity,", "took", "advantage", "of", "his", "power", "and", "influence", "and", "sought", "substantial", "benefits", "for", "his", "relatives'", "businesses", "and", "accepted", "valuable", "gifts,", "Xinhua", "said.The", "announcement", "of", "his", "expulsion", "from", "the", "party", "means", "he", "will", "also", "be", "removed", "from", "the", "25-member", "politburo,", "the", "party's", "powerful", "decision-making", "body.", "Sun", "had", "been", "handed", "over", "to", "judicial", "authorities", "for", "further", "investigation,", "the", "report", "added." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Bill", "Belichick", "believes", "Russell", "Wilson", "is", "underrated", "by", "fans,", "media:", "'I", "don't", "really", "see", "anybody", "better", "than", "this", "player'" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Bill", "Belichick", "believes", "Russell", "Wilson", "is", "underrated", "by", "fans,", "media:", "'I", "don't", "really", "see", "anybody", "better", "than", "this", "player'" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Friday", "Night", "Fanfiction", "::", "L-Ron", "Boots", "Posted", "by", "Stevo", "on", "November", "13,", "2017", "The", "drunken", "fanfiction", "podcast", "you’ve", "been", "waiting", "for!", "Friday", "Night", "Fanfiction", "combines", "dramatic", "readings", "of", "the", "worst-of-the-worst", "NSFW", "fanfic", "with", "drinking", "games.", "The", "following", "message", "was", "found", "in", "a", "large", "glass", "jar,", "next", "to", "the", "remains", "of", "a", "fairy", "of", "some", "sort:", "“If", "you’re", "reading", "this", "then", "I", "am", "likely", "already", "beyond", "help.", "It", "feels", "like", "I’ve", "been", "wandering", "these", "lands", "for", "a", "millennia", "already,", "yet", "I", "am", "no", "closer", "to", "my", "goal.", "I", "don’t", "remember", "who", "I", "am", "anymore,", "or", "how", "I’m", "able", "to", "write", "this.", "This", "realm,", "this", "entire", "reality,", "was", "created", "just", "for", "me", "by", "her.", "And", "she", "will", "not", "leave", "me", "alone.", "She", "says", "my", "blue", "eyes", "are", "eternal,", "and", "then", "I", "am", "able", "to", "see", "the", "grotesqueries", "of", "eternity", "as", "a", "result.", "I", "can", "see", "in", "all", "of", "it’s", "cosmic", "horror", "that", "I", "am", "bound", "to", "existence", "only", "as", "someone", "else’s", "thought.", "It", "has", "taken", "all", "of", "my", "strength", "just", "to", "write", "this", "down", "in", "the", "few", "hours", "that", "she", "is", "not", "here.", "I", "don’t", "know", "when", "she’ll", "return,", "or", "what", "awful", "rites", "of", "passage", "she", "will", "make", "me", "undergo.", "I", "didn’t", "want", "children.", "I", "didn’t", "want", "adventure.", "I", "didn’t", "want", "any", "of", "this.", "If", "you’re", "not", "simply", "another", "figment", "of", "her", "imagination,", "I", "give", "you", "only", "these", "words:", "Do", "not", "trust", "Jenna.", "Do", "not", "interact", "with", "Jenna.", "If", "you", "meet", "someone", "by", "that", "name,", "run.", "Run", "as", "fast", "as", "you", "can", "away.", "I", "am", "already", "doomed.”", "Yes…", "the", "Quest", "to", "Make", "it", "End", "continues", "as", "we", "venture", "deeper", "into", "Link’s", "Queen’s", "Zelda", "fanfic:", "“My", "Inner", "Life”.", "Download", "from", "the", "player", "above", "|", "Subscribe", "via", "iTunes", "Readers:", "Stevo,", "David,", "Val,", "Shawn,", "Gorejuice,", "RhythmBastard", "The", "Season", "5", "Longfic", "–", "“My", "Inner", "Life”:", "Social", "Links:" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Friday", "Night", "Fanfiction", "::", "L-Ron", "Boots", "Posted", "by", "Stevo", "on", "November", "13,", "2017", "The", "drunken", "fanfiction", "podcast", "you’ve", "been", "waiting", "for!", "Friday", "Night", "Fanfiction", "combines", "dramatic", "readings", "of", "the", "worst-of-the-worst", "NSFW", "fanfic", "with", "drinking", "games.", "The", "following", "message", "was", "found", "in", "a", "large", "glass", "jar,", "next", "to", "the", "remains", "of", "a", "fairy", "of", "some", "sort:", "“If", "you’re", "reading", "this", "then", "I", "am", "likely", "already", "beyond", "help.", "It", "feels", "like", "I’ve", "been", "wandering", "these", "lands", "for", "a", "millennia", "already,", "yet", "I", "am", "no", "closer", "to", "my", "goal.", "I", "don’t", "remember", "who", "I", "am", "anymore,", "or", "how", "I’m", "able", "to", "write", "this.", "This", "realm,", "this", "entire", "reality,", "was", "created", "just", "for", "me", "by", "her.", "And", "she", "will", "not", "leave", "me", "alone.", "She", "says", "my", "blue", "eyes", "are", "eternal,", "and", "then", "I", "am", "able", "to", "see", "the", "grotesqueries", "of", "eternity", "as", "a", "result.", "I", "can", "see", "in", "all", "of", "it’s", "cosmic", "horror", "that", "I", "am", "bound", "to", "existence", "only", "as", "someone", "else’s", "thought.", "It", "has", "taken", "all", "of", "my", "strength", "just", "to", "write", "this", "down", "in", "the", "few", "hours", "that", "she", "is", "not", "here.", "I", "don’t", "know", "when", "she’ll", "return,", "or", "what", "awful", "rites", "of", "passage", "she", "will", "make", "me", "undergo.", "I", "didn’t", "want", "children.", "I", "didn’t", "want", "adventure.", "I", "didn’t", "want", "any", "of", "this.", "If", "you’re", "not", "simply", "another", "figment", "of", "her", "imagination,", "I", "give", "you", "only", "these", "words:", "Do", "not", "trust", "Jenna.", "Do", "not", "interact", "with", "Jenna.", "If", "you", "meet", "someone", "by", "that", "name,", "run.", "Run", "as", "fast", "as", "you", "can", "away.", "I", "am", "already", "doomed.”", "Yes…", "the", "Quest", "to", "Make", "it", "End", "continues", "as", "we", "venture", "deeper", "into", "Link’s", "Queen’s", "Zelda", "fanfic:", "“My", "Inner", "Life”.", "Download", "from", "the", "player", "above", "|", "Subscribe", "via", "iTunes", "Readers:", "Stevo,", "David,", "Val,", "Shawn,", "Gorejuice,", "RhythmBastard", "The", "Season", "5", "Longfic", "–", "“My", "Inner", "Life”:", "Social", "Links:" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "The", "Supreme", "Court", "today", "stayed", "an", "order", "of", "Uttarakhand", "High", "Court", "which", "had", "directed", "a", "blanket", "ban", "on", "Fatwas", "by", "religious", "bodies.", "..." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "Supreme", "Court", "today", "stayed", "an", "order", "of", "Uttarakhand", "High", "Court", "which", "had", "directed", "a", "blanket", "ban", "on", "Fatwas", "by", "religious", "bodies.", "..." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Bill", "Clinton:", "I", "Regret", "DADT", "Former", "president", "Bill", "Clinton", "told", "CBS", "News", "anchor", "Katie", "Couric", "that", "he", "regrets", "the", "“don’t", "ask,", "don’t", "tell”", "policy", "created", "in", "1993", "under", "his", "administration", "but", "that", "Colin", "Powell,", "his", "chairman", "of", "the", "Joint", "Chiefs", "of", "Staff,", "misrepresented", "how", "the", "policy", "would", "work.", "President", "Clinton", "spoke", "with", "Couric", "hours", "after", "an", "attempt", "to", "repeal", "the", "policy", "in", "the", "Senate", "failed", "to", "overcome", "a", "Republican", "filibuster.", "\"Do", "you", "ever", "regret", "it", "as", "a", "policy?\"", "asked", "Couric.", "\"Oh,", "yeah,\"", "Clinton", "responded.", "\"But", "keep", "in", "mind,", "I", "didn’t", "choose", "this", "policy.\"", "The", "president", "said", "he", "resorted", "to", "“don’t", "ask,", "don’t", "tell”", "when", "it", "became", "apparent", "that", "both", "houses", "of", "Congress", "would", "enact", "an", "absolute", "ban", "on", "gay", "people", "serving", "in", "the", "military", "unless", "he", "did", "something", "else.", "He", "also", "said", "that", "Powell", "misrepresented", "how", "the", "policy", "would", "work.", "\"'Don't", "ask,", "don't", "tell'", "was", "only", "adopted", "when", "both", "Houses", "of", "Congress", "had", "voted", "by", "a", "huge", "veto-proof", "margin", "to", "legislate", "the", "absolute", "ban", "on", "gays", "in", "the", "military", "if", "I", "didn't", "do", "something", "else,\"", "said", "Clinton.", "\"So", "there's", "been", "a", "lot", "of", "rewriting", "history,", "saying", "'Bill", "Clinton", "just", "gave", "in", "to", "that.'", "That's", "just", "factually", "false.", "I", "didn't", "do", "anything", "until", "the", "votes", "were", "counted.", "Now,", "when", "Colin", "Powell", "sold", "me", "on", "'don't", "pass,", "don't", "tell,'", "here's", "what", "he", "said", "it", "would", "be.", "Gay", "service", "members", "would", "never", "get", "in", "trouble", "for", "going", "to", "gay", "bars,", "marching", "in", "gay", "rights", "parades,", "as", "long", "as", "they", "weren't", "in", "uniform.", "That", "was", "what", "they", "were", "promised.", "That's", "a", "very", "different", "'don't", "ask,", "don't", "tell'", "than", "we", "got.\"" ] ]
[ [ "en", "fr", "fr", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Bill", "Clinton:", "I", "Regret", "DADT", "Former", "president", "Bill", "Clinton", "told", "CBS", "News", "anchor", "Katie", "Couric", "that", "he", "regrets", "the", "“don’t", "ask,", "don’t", "tell”", "policy", "created", "in", "1993", "under", "his", "administration", "but", "that", "Colin", "Powell,", "his", "chairman", "of", "the", "Joint", "Chiefs", "of", "Staff,", "misrepresented", "how", "the", "policy", "would", "work.", "President", "Clinton", "spoke", "with", "Couric", "hours", "after", "an", "attempt", "to", "repeal", "the", "policy", "in", "the", "Senate", "failed", "to", "overcome", "a", "Republican", "filibuster.", "\"Do", "you", "ever", "regret", "it", "as", "a", "policy?\"", "asked", "Couric.", "\"Oh,", "yeah,\"", "Clinton", "responded.", "\"But", "keep", "in", "mind,", "I", "didn’t", "choose", "this", "policy.\"", "The", "president", "said", "he", "resorted", "to", "“don’t", "ask,", "don’t", "tell”", "when", "it", "became", "apparent", "that", "both", "houses", "of", "Congress", "would", "enact", "an", "absolute", "ban", "on", "gay", "people", "serving", "in", "the", "military", "unless", "he", "did", "something", "else.", "He", "also", "said", "that", "Powell", "misrepresented", "how", "the", "policy", "would", "work.", "\"'Don't", "ask,", "don't", "tell'", "was", "only", "adopted", "when", "both", "Houses", "of", "Congress", "had", "voted", "by", "a", "huge", "veto-proof", "margin", "to", "legislate", "the", "absolute", "ban", "on", "gays", "in", "the", "military", "if", "I", "didn't", "do", "something", "else,\"", "said", "Clinton.", "\"So", "there's", "been", "a", "lot", "of", "rewriting", "history,", "saying", "'Bill", "Clinton", "just", "gave", "in", "to", "that.'", "That's", "just", "factually", "false.", "I", "didn't", "do", "anything", "until", "the", "votes", "were", "counted.", "Now,", "when", "Colin", "Powell", "sold", "me", "on", "'don't", "pass,", "don't", "tell,'", "here's", "what", "he", "said", "it", "would", "be.", "Gay", "service", "members", "would", "never", "get", "in", "trouble", "for", "going", "to", "gay", "bars,", "marching", "in", "gay", "rights", "parades,", "as", "long", "as", "they", "weren't", "in", "uniform.", "That", "was", "what", "they", "were", "promised.", "That's", "a", "very", "different", "'don't", "ask,", "don't", "tell'", "than", "we", "got.\"" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "The", "Latest:", "Pilot", "dies", "as", "plane", "crashes", "into", "California", "home", "Police", "say", "the", "pilot", "of", "a", "small", "plane", "that", "crashed", "into", "a", "Southern", "California", "home", "has", "died", "UPLAND,", "Calif.", "--", "The", "Latest", "on", "a", "plane", "crash", "into", "a", "Southern", "California", "house", "(all", "times", "local):", "1:20", "p.m.", "Police", "say", "the", "pilot", "of", "a", "small", "plane", "that", "crashed", "into", "a", "Southern", "California", "home", "has", "died.", "Upland", "police", "Capt.", "Marcelo", "Blanco", "said", "Thursday", "that", "authorities", "believe", "the", "pilot", "was", "the", "only", "person", "aboard", "the", "single-engine", "Cirrus", "SR22.", "The", "pilot", "was", "not", "immediately", "identified.", "Blanco", "says", "authorities", "don't", "know", "what", "caused", "the", "plane", "to", "crash", "into", "the", "residence,", "igniting", "a", "fire.", "A", "father", "and", "child", "inside", "the", "house", "escaped", "unharmed.", "———", "12:10", "p.m.", "Police", "say", "two", "occupants", "of", "a", "Southern", "California", "home", "were", "not", "harmed", "when", "a", "small", "plane", "crashed", "into", "the", "residence", "and", "ignited", "a", "fire.", "Upland", "police", "Capt.", "Marcelo", "Blanco", "says", "a", "father", "and", "child", "were", "home", "at", "the", "time", "and", "escaped", "without", "injuries.", "Blanco", "says", "the", "plane", "was", "a", "single-engine", "Cirrus", "SR22,", "but", "he", "had", "no", "information", "about", "who", "was", "aboard", "the", "craft", "when", "it", "went", "down", "late", "Thursday", "morning.", "———", "12:02", "p.m.", "Authorities", "say", "a", "single-engine", "plane", "has", "crashed", "into", "a", "house", "in", "Southern", "California,", "sparking", "a", "house", "fire.", "The", "San", "Bernardino", "County", "Fire", "Department", "was", "at", "the", "scene", "of", "the", "crash", "late", "Thursday", "morning.", "Fire", "officials", "say", "the", "occupants", "of", "the", "house", "were", "accounted", "for.", "There", "was", "no", "immediate", "information", "on", "how", "many", "people", "were", "on", "the", "plane,", "nor", "their", "conditions.", "TV", "news", "helicopters", "showed", "a", "large", "portion", "of", "the", "house", "gutted", "and", "smoldering.", "A", "parachute", "was", "draped", "over", "trees.", "Some", "small", "planes", "are", "equipped", "with", "parachutes", "for", "emergency", "landings.", "Upland", "is", "about", "35", "miles", "(55", "kilometers)", "east", "of", "Los", "Angeles." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "Latest:", "Pilot", "dies", "as", "plane", "crashes", "into", "California", "home", "Police", "say", "the", "pilot", "of", "a", "small", "plane", "that", "crashed", "into", "a", "Southern", "California", "home", "has", "died", "UPLAND,", "Calif.", "--", "The", "Latest", "on", "a", "plane", "crash", "into", "a", "Southern", "California", "house", "(all", "times", "local):", "1:20", "p.m.", "Police", "say", "the", "pilot", "of", "a", "small", "plane", "that", "crashed", "into", "a", "Southern", "California", "home", "has", "died.", "Upland", "police", "Capt.", "Marcelo", "Blanco", "said", "Thursday", "that", "authorities", "believe", "the", "pilot", "was", "the", "only", "person", "aboard", "the", "single-engine", "Cirrus", "SR22.", "The", "pilot", "was", "not", "immediately", "identified.", "Blanco", "says", "authorities", "don't", "know", "what", "caused", "the", "plane", "to", "crash", "into", "the", "residence,", "igniting", "a", "fire.", "A", "father", "and", "child", "inside", "the", "house", "escaped", "unharmed.", "———", "12:10", "p.m.", "Police", "say", "two", "occupants", "of", "a", "Southern", "California", "home", "were", "not", "harmed", "when", "a", "small", "plane", "crashed", "into", "the", "residence", "and", "ignited", "a", "fire.", "Upland", "police", "Capt.", "Marcelo", "Blanco", "says", "a", "father", "and", "child", "were", "home", "at", "the", "time", "and", "escaped", "without", "injuries.", "Blanco", "says", "the", "plane", "was", "a", "single-engine", "Cirrus", "SR22,", "but", "he", "had", "no", "information", "about", "who", "was", "aboard", "the", "craft", "when", "it", "went", "down", "late", "Thursday", "morning.", "———", "12:02", "p.m.", "Authorities", "say", "a", "single-engine", "plane", "has", "crashed", "into", "a", "house", "in", "Southern", "California,", "sparking", "a", "house", "fire.", "The", "San", "Bernardino", "County", "Fire", "Department", "was", "at", "the", "scene", "of", "the", "crash", "late", "Thursday", "morning.", "Fire", "officials", "say", "the", "occupants", "of", "the", "house", "were", "accounted", "for.", "There", "was", "no", "immediate", "information", "on", "how", "many", "people", "were", "on", "the", "plane,", "nor", "their", "conditions.", "TV", "news", "helicopters", "showed", "a", "large", "portion", "of", "the", "house", "gutted", "and", "smoldering.", "A", "parachute", "was", "draped", "over", "trees.", "Some", "small", "planes", "are", "equipped", "with", "parachutes", "for", "emergency", "landings.", "Upland", "is", "about", "35", "miles", "(55", "kilometers)", "east", "of", "Los", "Angeles." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Nathan", "Baird", "[email protected]", "Neal", "Beshears", "knew", "going", "into", "the", "offseason", "that,", "barring", "an", "incoming", "transfer,", "he", "would", "be", "the", "Purdue", "men's", "basketball", "team's", "only", "senior", "this", "season.", "The", "forward", "from", "Winchester", "assumed", "that", "designation", "would", "carry", "a", "certain", "amount", "of", "leadership", "responsibilities.", "It", "didn't", "matter", "that", "he", "was", "a", "walk-on.", "\"Most", "(walk-ons),", "because", "they", "don't", "play", "a", "lot,", "they're", "afraid", "that", "if", "they", "say", "something,", "the", "guys", "that", "play", "a", "lot", "aren't", "going", "to", "respond", "to", "them,\"", "Beshears", "said.", "\"I", "think", "a", "lot", "of", "the", "guys", "respect", "us", "and", "respect", "the", "walk-ons.", "If", "we're", "doing", "what", "we're", "supposed", "to", "it", "helps", "us", "influence", "them", "as", "far", "as", "doing", "the", "right", "things", "and", "playing", "the", "right", "way.\"", "Earlier", "this", "week,", "Purdue", "coach", "Matt", "Painter", "rewarded", "two", "walk-ons", "—", "Beshears", "and", "junior", "guard", "Stephen", "Toyra", "—", "with", "scholarships", "for", "2014-15.", "They", "and", "walk-on", "junior", "guard", "Jon", "McKeeman", "represent", "three-fifths", "of", "the", "team's", "upperclassmen", "going", "into", "the", "season.", "Earlier", "this", "summer", "the", "Boilermakers", "said", "those", "three", "players", "are", "expected", "to", "play", "a", "vital", "leadership", "role", "this", "season,", "regardless", "of", "their", "scholarship", "designation.", "Beshears", "is", "the", "only", "scholarship", "senior", "and,", "not", "counting", "walk-on", "sophomore", "guard", "Anfernee", "Brown,", "Purdue", "will", "feature", "five", "freshmen", "and", "three", "sophomores.", "\"The", "walk-ons", "that", "we", "have,", "they", "have", "a", "lot", "of", "knowledge", "and", "a", "lot", "of", "good", "input,\"", "sophomore", "guard", "Kendall", "Stephens", "said.", "\"We", "as", "players,", "we", "look", "to", "that", "and", "we", "accept", "it", "and", "we", "realize", "they", "know", "what", "they're", "talking", "about.", "They're", "great", "athletes", "and", "they", "can", "contribute.", "They're", "teammates", "just", "like", "us.\"", "The", "walk-on", "role", "essentially", "requires", "the", "selflessness", "expected", "of", "true", "leaders.", "They", "endure", "the", "same", "early", "morning", "strength", "and", "conditioning", "sessions,", "the", "same", "grueling", "practices", "and", "the", "same", "time", "demands", "as", "the", "scholarship", "athletes.", "Game", "minutes", "typically", "come", "in", "lopsided", "contests,", "and", "rarely", "after", "the", "start", "of", "the", "Big", "Ten", "Conference", "season.", "That", "sacrifice", "earns", "walk-ons", "their", "teammates'", "respect,", "but", "it", "doesn't", "always", "lead", "to", "an", "equivalent", "voice", "in", "the", "locker", "room.", "Yet", "several", "Boilermakers", "say", "the", "team", "has", "emphasized", "open", "and", "positive", "communication", "this", "offseason,", "and", "the", "walk-ons", "are", "encouraged", "to", "speak", "up.", "\"Everybody's", "pretty", "competitive,\"", "said", "Toyra,", "who", "was", "invited", "to", "walk-on", "after", "a", "breakthrough", "senior", "season", "at", "Lafayette's", "Faith", "Christian.", "\"Me,", "Jon", "and", "Neal", "don't", "play", "as", "much,", "but", "in", "open", "gym,", "we're", "solid", "contributors.", "\"Whether", "that", "translates", "on", "to", "the", "court", "in", "Big", "Ten", "games", "due", "to", "athleticism,", "it", "may", "not.", "But", "I", "think", "everybody", "has", "everybody", "else's", "respect", "and", "that", "hasn't", "been", "true", "in", "the", "past.", "Now", "that", "it", "is", "it", "brings", "a", "difference", "sense", "of", "team", "chemistry", "and", "everybody", "on", "the", "same", "page", "wanting", "to", "do", "what", "it", "takes", "to", "win.\"", "While", "accepting", "their", "supporting", "role,", "the", "walk-ons", "say", "they", "keep", "their", "eye", "on", "a", "potential", "payoff.", "Players", "like", "Bobby", "Riddell,", "Mark", "Wohlford", "and", "others", "walked", "on", "in", "recent", "years", "before", "working", "their", "way", "to", "larger", "roles.", "Recent", "history", "has", "also", "made", "the", "scholarship", "players", "more", "receptive", "to", "their", "walk-on", "teammates.", "As", "a", "freshman,", "Rapheal", "Davis", "had", "upperclassmen", "like", "D.J.", "Byrd,", "Terone", "Johnson", "and", "Travis", "Carroll", "to", "look", "up", "to.", "But", "Davis,", "who", "by", "the", "end", "of", "his", "sophomore", "season", "had", "earned", "a", "captain's", "designation", "due", "to", "his", "leadership", "skills,", "said", "he", "learned", "his", "trade", "from", "Dru", "Anthrop.", "Anthrop", "came", "to", "Purdue", "as", "an", "invited", "walk-on", "out", "of", "Central", "Catholic,", "but", "like", "Beshears", "and", "Toyra", "eventually", "earned", "a", "scholarship.", "\"Him", "pushing", "me", "helped", "me", "play", "hard,\"", "Davis", "said.", "\"That's", "probably", "why", "I", "got", "a", "reputation", "around", "here", "of", "playing", "hard", "and", "practicing", "hard,", "just", "trying", "to", "imitate", "what", "he", "did.", "\"It's", "about", "who", "you", "attach", "to.", "He", "pushed", "me", "as", "a", "freshman.", "I", "know", "Stephen", "is", "really", "pushing", "Dakota", "(Mathias)", "in", "the", "gym....", "I", "know", "Neal", "is", "really", "pushing", "Vince", "(Edwards)", "and", "Basil", "(Smotherman).", "I", "know", "Jon", "is", "trying", "to", "work", "with", "Bryson", "(Scott).\"", "The", "walk-ons", "spent", "the", "summer", "trying", "to", "impart", "veteran", "wisdom", "on", "Purdue's", "incoming", "five-man", "freshman", "class.", "Regardless", "of", "their", "impact", "on", "the", "box", "score,", "Beshears,", "Toyra", "and", "McKeeman", "have", "spent", "a", "combined", "eight", "seasons", "inside", "the", "Boilermaker", "program", "and", "the", "world", "of", "college", "basketball", "in", "general.", "That", "makes", "them", "a", "valuable", "resource", "for", "freshmen", "trying", "to", "find", "a", "certain", "building", "on", "campus", "or", "struggling", "to", "learn", "a", "particular", "concept", "or", "drill.", "\"It's", "a", "lot", "of", "information", "to", "take", "in", "at", "once,\"", "said", "McKeeman,", "who", "finds", "enough", "time", "between", "basketball", "responsibilities", "to", "earn", "Big", "Ten", "Distinguished", "Scholar", "accolades.", "\"I", "know", "when", "I", "was", "here", "as", "a", "freshman", "I", "kind", "of", "had", "to", "jump", "in", "and", "learn", "it", "all", "really,", "really", "quickly." ], [ "\"Giving", "them", "a", "transition", "period", "in", "the", "summer", "where", "we", "can", "teach", "them,", "where", "it's", "a", "non-confrontational", "environment", "and", "you", "don't", "have", "any", "coaches", "yelling", "at", "you", "and", "it's", "a", "slower", "pace", "where", "they", "can", "learn,", "I", "think", "that's", "going", "to", "be", "a", "good", "thing", "for", "them.\"", "Last", "season,", "Purdue's", "four", "walk-ons", "combined", "for", "61", "minutes", "—", "almost", "half", "of", "which", "came", "from", "Toyra.", "But", "none", "of", "them", "say", "they'll", "measure", "their", "success", "in", "2014-15", "by", "how", "much", "that", "number", "increases.", "\"As", "you", "come", "in", "and", "things", "happen", "and", "guys", "come", "and", "go,", "you", "realize", "there", "is", "a", "burden", "that", "has", "to", "be", "carried", "by", "somebody,\"", "Toyra", "said.", "\"My", "mindset", "is", "I", "want", "to", "put", "myself", "in", "as", "good", "a", "position", "to", "do", "that", "as", "any", "scholarship", "player", "or", "anybody", "in", "this", "program", "in", "general....", "I'm", "going", "to", "be", "ready", "to", "go,", "but", "I'm", "going", "to", "do", "what's", "best", "for", "Purdue.", "\"I'd", "love", "to", "see", "P.J.", "(Thompson)", "come", "in", "and", "beat", "me", "out", "and", "lead", "us", "to", "a", "Big", "Ten", "championship.", "I", "would", "be", "just", "as", "excited", "as", "if", "I", "got", "to", "do", "that.", "It's", "the", "simple", "fact", "that", "goal", "is", "to", "win", "and", "not", "individual", "accolades.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Nathan", "Baird", "[email protected]", "Neal", "Beshears", "knew", "going", "into", "the", "offseason", "that,", "barring", "an", "incoming", "transfer,", "he", "would", "be", "the", "Purdue", "men's", "basketball", "team's", "only", "senior", "this", "season.", "The", "forward", "from", "Winchester", "assumed", "that", "designation", "would", "carry", "a", "certain", "amount", "of", "leadership", "responsibilities.", "It", "didn't", "matter", "that", "he", "was", "a", "walk-on.", "\"Most", "(walk-ons),", "because", "they", "don't", "play", "a", "lot,", "they're", "afraid", "that", "if", "they", "say", "something,", "the", "guys", "that", "play", "a", "lot", "aren't", "going", "to", "respond", "to", "them,\"", "Beshears", "said.", "\"I", "think", "a", "lot", "of", "the", "guys", "respect", "us", "and", "respect", "the", "walk-ons.", "If", "we're", "doing", "what", "we're", "supposed", "to", "it", "helps", "us", "influence", "them", "as", "far", "as", "doing", "the", "right", "things", "and", "playing", "the", "right", "way.\"", "Earlier", "this", "week,", "Purdue", "coach", "Matt", "Painter", "rewarded", "two", "walk-ons", "—", "Beshears", "and", "junior", "guard", "Stephen", "Toyra", "—", "with", "scholarships", "for", "2014-15.", "They", "and", "walk-on", "junior", "guard", "Jon", "McKeeman", "represent", "three-fifths", "of", "the", "team's", "upperclassmen", "going", "into", "the", "season.", "Earlier", "this", "summer", "the", "Boilermakers", "said", "those", "three", "players", "are", "expected", "to", "play", "a", "vital", "leadership", "role", "this", "season,", "regardless", "of", "their", "scholarship", "designation.", "Beshears", "is", "the", "only", "scholarship", "senior", "and,", "not", "counting", "walk-on", "sophomore", "guard", "Anfernee", "Brown,", "Purdue", "will", "feature", "five", "freshmen", "and", "three", "sophomores.", "\"The", "walk-ons", "that", "we", "have,", "they", "have", "a", "lot", "of", "knowledge", "and", "a", "lot", "of", "good", "input,\"", "sophomore", "guard", "Kendall", "Stephens", "said.", "\"We", "as", "players,", "we", "look", "to", "that", "and", "we", "accept", "it", "and", "we", "realize", "they", "know", "what", "they're", "talking", "about.", "They're", "great", "athletes", "and", "they", "can", "contribute.", "They're", "teammates", "just", "like", "us.\"", "The", "walk-on", "role", "essentially", "requires", "the", "selflessness", "expected", "of", "true", "leaders.", "They", "endure", "the", "same", "early", "morning", "strength", "and", "conditioning", "sessions,", "the", "same", "grueling", "practices", "and", "the", "same", "time", "demands", "as", "the", "scholarship", "athletes.", "Game", "minutes", "typically", "come", "in", "lopsided", "contests,", "and", "rarely", "after", "the", "start", "of", "the", "Big", "Ten", "Conference", "season.", "That", "sacrifice", "earns", "walk-ons", "their", "teammates'", "respect,", "but", "it", "doesn't", "always", "lead", "to", "an", "equivalent", "voice", "in", "the", "locker", "room.", "Yet", "several", "Boilermakers", "say", "the", "team", "has", "emphasized", "open", "and", "positive", "communication", "this", "offseason,", "and", "the", "walk-ons", "are", "encouraged", "to", "speak", "up.", "\"Everybody's", "pretty", "competitive,\"", "said", "Toyra,", "who", "was", "invited", "to", "walk-on", "after", "a", "breakthrough", "senior", "season", "at", "Lafayette's", "Faith", "Christian.", "\"Me,", "Jon", "and", "Neal", "don't", "play", "as", "much,", "but", "in", "open", "gym,", "we're", "solid", "contributors.", "\"Whether", "that", "translates", "on", "to", "the", "court", "in", "Big", "Ten", "games", "due", "to", "athleticism,", "it", "may", "not.", "But", "I", "think", "everybody", "has", "everybody", "else's", "respect", "and", "that", "hasn't", "been", "true", "in", "the", "past.", "Now", "that", "it", "is", "it", "brings", "a", "difference", "sense", "of", "team", "chemistry", "and", "everybody", "on", "the", "same", "page", "wanting", "to", "do", "what", "it", "takes", "to", "win.\"", "While", "accepting", "their", "supporting", "role,", "the", "walk-ons", "say", "they", "keep", "their", "eye", "on", "a", "potential", "payoff.", "Players", "like", "Bobby", "Riddell,", "Mark", "Wohlford", "and", "others", "walked", "on", "in", "recent", "years", "before", "working", "their", "way", "to", "larger", "roles.", "Recent", "history", "has", "also", "made", "the", "scholarship", "players", "more", "receptive", "to", "their", "walk-on", "teammates.", "As", "a", "freshman,", "Rapheal", "Davis", "had", "upperclassmen", "like", "D.J.", "Byrd,", "Terone", "Johnson", "and", "Travis", "Carroll", "to", "look", "up", "to.", "But", "Davis,", "who", "by", "the", "end", "of", "his", "sophomore", "season", "had", "earned", "a", "captain's", "designation", "due", "to", "his", "leadership", "skills,", "said", "he", "learned", "his", "trade", "from", "Dru", "Anthrop.", "Anthrop", "came", "to", "Purdue", "as", "an", "invited", "walk-on", "out", "of", "Central", "Catholic,", "but", "like", "Beshears", "and", "Toyra", "eventually", "earned", "a", "scholarship.", "\"Him", "pushing", "me", "helped", "me", "play", "hard,\"", "Davis", "said.", "\"That's", "probably", "why", "I", "got", "a", "reputation", "around", "here", "of", "playing", "hard", "and", "practicing", "hard,", "just", "trying", "to", "imitate", "what", "he", "did.", "\"It's", "about", "who", "you", "attach", "to.", "He", "pushed", "me", "as", "a", "freshman.", "I", "know", "Stephen", "is", "really", "pushing", "Dakota", "(Mathias)", "in", "the", "gym....", "I", "know", "Neal", "is", "really", "pushing", "Vince", "(Edwards)", "and", "Basil", "(Smotherman).", "I", "know", "Jon", "is", "trying", "to", "work", "with", "Bryson", "(Scott).\"", "The", "walk-ons", "spent", "the", "summer", "trying", "to", "impart", "veteran", "wisdom", "on", "Purdue's", "incoming", "five-man", "freshman", "class.", "Regardless", "of", "their", "impact", "on", "the", "box", "score,", "Beshears,", "Toyra", "and", "McKeeman", "have", "spent", "a", "combined", "eight", "seasons", "inside", "the", "Boilermaker", "program", "and", "the", "world", "of", "college", "basketball", "in", "general.", "That", "makes", "them", "a", "valuable", "resource", "for", "freshmen", "trying", "to", "find", "a", "certain", "building", "on", "campus", "or", "struggling", "to", "learn", "a", "particular", "concept", "or", "drill.", "\"It's", "a", "lot", "of", "information", "to", "take", "in", "at", "once,\"", "said", "McKeeman,", "who", "finds", "enough", "time", "between", "basketball", "responsibilities", "to", "earn", "Big", "Ten", "Distinguished", "Scholar", "accolades.", "\"I", "know", "when", "I", "was", "here", "as", "a", "freshman", "I", "kind", "of", "had", "to", "jump", "in", "and", "learn", "it", "all", "really,", "really", "quickly." ] ], [ [ "\"Giving", "them", "a", "transition", "period", "in", "the", "summer", "where", "we", "can", "teach", "them,", "where", "it's", "a", "non-confrontational", "environment", "and", "you", "don't", "have", "any", "coaches", "yelling", "at", "you", "and", "it's", "a", "slower", "pace", "where", "they", "can", "learn,", "I", "think", "that's", "going", "to", "be", "a", "good", "thing", "for", "them.\"", "Last", "season,", "Purdue's", "four", "walk-ons", "combined", "for", "61", "minutes", "—", "almost", "half", "of", "which", "came", "from", "Toyra.", "But", "none", "of", "them", "say", "they'll", "measure", "their", "success", "in", "2014-15", "by", "how", "much", "that", "number", "increases.", "\"As", "you", "come", "in", "and", "things", "happen", "and", "guys", "come", "and", "go,", "you", "realize", "there", "is", "a", "burden", "that", "has", "to", "be", "carried", "by", "somebody,\"", "Toyra", "said.", "\"My", "mindset", "is", "I", "want", "to", "put", "myself", "in", "as", "good", "a", "position", "to", "do", "that", "as", "any", "scholarship", "player", "or", "anybody", "in", "this", "program", "in", "general....", "I'm", "going", "to", "be", "ready", "to", "go,", "but", "I'm", "going", "to", "do", "what's", "best", "for", "Purdue.", "\"I'd", "love", "to", "see", "P.J.", "(Thompson)", "come", "in", "and", "beat", "me", "out", "and", "lead", "us", "to", "a", "Big", "Ten", "championship.", "I", "would", "be", "just", "as", "excited", "as", "if", "I", "got", "to", "do", "that.", "It's", "the", "simple", "fact", "that", "goal", "is", "to", "win", "and", "not", "individual", "accolades.\"" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "1", "de", "6", "|", "Una", "mujer", "participa", "en", "la", "protesta", "de", "los", "padres", "de", "los", "43", "de", "Ayotzinapa", "este", "jueves", "en", "Ciudad", "de", "México", "frente", "a", "la", "residencia", "presidencial.", "2", "de", "6", "|", "Así", "se", "ve", "la", "protesta", "este", "viernes", "(Crédito:", "Lourdes", "Murguía", "‏@lomurguia)", "3", "de", "6", "|", "Una", "mujer", "sostiene", "un", "cartel", "durante", "el", "'plantón'", "de", "los", "familiares", "de", "los", "43", "estudiantes", "desaparecidos.", "4", "de", "6", "|", "La", "protesta", "llega", "cuando", "se", "cumplen", "14", "meses", "de", "la", "desaparición", "de", "los", "normalistas.", "5", "de", "6", "|", "Los", "familiares", "piden", "respuestas", "y", "justicia.", "6", "de", "6", "|", "Una", "mujer", "sostiene", "un", "cartel", "durante", "el", "'plantón'", "de", "los", "familiares", "de", "los", "43", "estudiantes", "desaparecidos.", "(CNN", "Español)", "—", "Un", "grupo", "de", "padres", "y", "familiares", "de", "los", "43", "estudiantes", "de", "la", "Escuela", "Normal", "«Raúl", "Isidro", "Burgos»", "de", "Ayotzinapa", "que", "desaparecieron", "el", "26", "de", "septiembre", "de", "2014", "protestan", "desde", "este", "jueves", "a", "las", "afueras", "de", "la", "residencia", "presidencial", "en", "Los", "Pinos,", "en", "Ciudad", "de", "México.", "Los", "manifestantes", "han", "anunciado", "que", "se", "trata", "de", "una", "manifestación", "indefinida", "para", "pedirle", "al", "gobierno", "mayor", "acción", "en", "la", "investigación", "de", "los", "estudiantes.", "Esta", "protesta", "llega", "cuando", "se", "cumplen", "14", "meses", "de", "la", "desaparición", "de", "los", "normalistas.", "Según", "las", "autoridades", "mexicanas,", "los", "estudiantes", "iban", "a", "manifestarse", "cuando", "fueron", "atacados", "por", "oficiales", "de", "policía", "corruptos", "—asociados", "con", "un", "grupo", "de", "narcotraficantes—,", "luego", "ejecutados,", "sus", "cuerpos", "incinerados", "en", "un", "basurero", "y", "los", "restos", "arrojados", "a", "un", "río.", "Pero", "esta", "versión", "del", "gobierno", "de", "México", "fue", "desacreditada", "a", "principios", "de", "septiembre,", "cuando", "un", "grupo", "independiente", "de", "expertos", "forenses", "contratados", "por", "la", "Comisión", "Interamericana", "de", "Derechos", "Humanos", "(CIDH)", "determinó", "que", "los", "estudiantes", "no", "pudieron", "haber", "sido", "incinerados", "en", "el", "basurero", "de", "Cocula.", "Los", "padres", "no", "han", "parado", "de", "buscar", "a", "sus", "hijos", "y", "tampoco", "han", "dejado", "de", "protestar", "en", "todo", "México.", "Dicen", "que", "seguirán", "protestando", "hasta", "que", "ocurra", "una", "de", "estas", "dos", "cosas:", "que", "sean", "encontrados", "vivos", "o", "que", "se", "demuestre", "científicamente", "que", "fueron", "asesinados." ] ]
[ [ "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "pt", "pt", "pt", "pt", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "pt", "pt", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es", "es" ] ]
[ [ [ "1", "de", "6", "|", "Una", "mujer", "participa", "en", "la", "protesta", "de", "los", "padres", "de", "los", "43", "de", "Ayotzinapa", "este", "jueves", "en", "Ciudad", "de", "México", "frente", "a", "la", "residencia", "presidencial.", "2", "de", "6", "|", "Así", "se", "ve", "la", "protesta", "este", "viernes", "(Crédito:", "Lourdes", "Murguía", "‏@lomurguia)", "3", "de", "6", "|", "Una", "mujer", "sostiene", "un", "cartel", "durante", "el", "'plantón'", "de", "los", "familiares", "de", "los", "43", "estudiantes", "desaparecidos.", "4", "de", "6", "|", "La", "protesta", "llega", "cuando", "se", "cumplen", "14", "meses", "de", "la", "desaparición", "de", "los", "normalistas.", "5", "de", "6", "|", "Los", "familiares", "piden", "respuestas", "y", "justicia.", "6", "de", "6", "|", "Una", "mujer", "sostiene", "un", "cartel", "durante", "el", "'plantón'", "de", "los", "familiares", "de", "los", "43", "estudiantes", "desaparecidos.", "(CNN", "Español)", "—", "Un", "grupo", "de", "padres", "y", "familiares", "de", "los", "43", "estudiantes", "de", "la", "Escuela", "Normal", "«Raúl", "Isidro", "Burgos»", "de", "Ayotzinapa", "que", "desaparecieron", "el", "26", "de", "septiembre", "de", "2014", "protestan", "desde", "este", "jueves", "a", "las", "afueras", "de", "la", "residencia", "presidencial", "en", "Los", "Pinos,", "en", "Ciudad", "de", "México.", "Los", "manifestantes", "han", "anunciado", "que", "se", "trata", "de", "una", "manifestación", "indefinida", "para", "pedirle", "al", "gobierno", "mayor", "acción", "en", "la", "investigación", "de", "los", "estudiantes.", "Esta", "protesta", "llega", "cuando", "se", "cumplen", "14", "meses", "de", "la", "desaparición", "de", "los", "normalistas.", "Según", "las", "autoridades", "mexicanas,", "los", "estudiantes", "iban", "a", "manifestarse", "cuando", "fueron", "atacados", "por", "oficiales", "de", "policía", "corruptos", "—asociados", "con", "un", "grupo", "de", "narcotraficantes—,", "luego", "ejecutados,", "sus", "cuerpos", "incinerados", "en", "un", "basurero", "y", "los", "restos", "arrojados", "a", "un", "río.", "Pero", "esta", "versión", "del", "gobierno", "de", "México", "fue", "desacreditada", "a", "principios", "de", "septiembre,", "cuando", "un", "grupo", "independiente", "de" ], [ "contratados", "por", "la", "Comisión", "Interamericana", "de", "Derechos", "Humanos", "(CIDH)", "determinó", "que", "los", "estudiantes", "no", "pudieron", "haber", "sido", "incinerados", "en", "el", "basurero", "de", "Cocula.", "Los", "padres", "no", "han", "parado", "de", "buscar", "a", "sus", "hijos", "y", "tampoco", "han", "dejado", "de", "protestar", "en", "todo", "México.", "Dicen", "que", "seguirán", "protestando", "hasta", "que", "ocurra", "una", "de", "estas", "dos", "cosas:", "que", "sean", "encontrados", "vivos", "o", "que", "se", "demuestre", "científicamente", "que", "fueron", "asesinados." ] ] ]
[ [ "es", "es" ] ]
[ "mono", "mono", "mono", "mono", "mono", "mono", "mono", "mono", "mono", "mono", "mono" ]
[ [ "Introduction", "What", "is", "this", "guide?", "There", "are", "tons", "of", "good", "resources", "online", "and", "in", "print", "about", "the", "PCT.", "In", "fact,", "much", "of", "what", "I’ve", "written", "here", "is", "probably", "available", "in", "some", "Reddit", "post", "or", "Blog", "entry", "somewhere.", "However,", "I", "honestly", "feel", "there’s", "a", "lack", "of", "decent", "SOBO-specific", "information", "that", "is", "collated", "into", "one", "resource.", "This", "is", "an", "attempt", "to", "do", "that.", "I’ve", "tried", "to", "keep", "it", "mostly", "about", "things", "that", "are", "unique", "to", "going", "SOBO", "(except", "the", "Shrink’s", "General", "Tips", "section).", "I", "would", "recommend", "reading", "this", "guide", "in", "addition", "to", "a", "more", "general-purpose", "resource", "out", "there:", "Also,", "please", "do", "check", "out", "these", "other", "really", "excellent", "SOBO", "resources:", "What", "this", "guide", "isn’t!", "This", "guide", "is", "not", "the", "final", "word", "on", "all", "things", "SOBO!", "Everyone", "has", "different", "experiences,", "each", "year", "is", "different,", "and", "the", "thru-hiking", "experience", "is", "extremely", "subjective.", "Take", "all", "of", "this", "with", "a", "grain", "of", "salt", "and", "a", "generous", "attitude.", "Take", "what", "is", "useful,", "leave", "what", "isn’t,", "and", "always", "remember", "-", "Hike", "Your", "Own", "Hike!", "About", "Shrink", "I’m", "a", "British-born", "hiker", "in", "my", "mid-thirties.", "I", "completed", "a", "full", "SOBO", "thru-hike,", "all", "2,653", "miles,", "in", "2019.", "I", "tagged", "the", "Northern", "Terminus", "on", "June", "29", "and", "reached", "the", "Southern", "Terminus", "in", "Campo", "on", "November", "4th,", "a", "total", "of", "129", "days.", "2019", "was", "a", "great", "year", "for", "us", "SOBOs:", "A", "low", "snow", "year", "in", "Washington", "Relatively", "good", "weather", "in", "the", "Sierras", "Few", "if", "any", "fire", "closures", "Thru-hiking", "has", "enriched", "my", "life", "in", "so", "many", "ways.", "It", "has", "been", "the", "journey", "of", "a", "lifetime.", "To", "those", "whom", "I", "walked", "with:", "it", "was", "an", "honour.", "Changes", "2/4/2020", "Sonora", "Pass", "Resupply", "company", "is", "closed", "1/10/2020", "Remove", "Amazon", "section", "12/30/2019", "Resort", "closures,", "Fearmongering,", "Bubble", "Pace", "12/9/2019", "Version", "1", "Why", "SOBO?", "I’m", "biased", "-", "I", "think", "the", "SOBO", "experience", "is", "incredible,", "and", "I", "want", "to", "shout", "it", "from", "the", "rooftops.", "NOBO", "Crowds", "In", "recent", "years", "the", "PCTA", "has", "released", "50", "permits", "per", "day", "throughout", "the", "the", "Northbound", "season.", "In", "2018,", "4,500", "Northbound", "thru-hike", "permits", "were", "issued.", "That", "is", "in", "contrast", "to", "491", "Southbound", "permits", "for", "the", "same", "year.", "The", "PCT", "going", "NOBO", "is", "crowded.", "The", "popularity", "of", "the", "trail", "has", "skyrocketed", "in", "the", "years", "since", "Wild", "was", "released", "in", "cinemas.", "Personally,", "this", "detracts", "from", "the", "experience", "I", "was", "searching", "for:", "adventure,", "independence,", "self", "sufficiency,", "connection", "with", "nature,", "peacefulness.", "This", "was", "the", "defining", "issue", "for", "me.", "I", "don’t", "want", "to", "be", "squeezing", "15", "people", "into", "a", "4-person", "tent", "site.", "I", "don’t", "want", "to", "be", "hurrying", "into", "town", "early", "to", "get", "the", "few", "remaining", "hotel", "rooms.", "I", "don’t", "want", "to", "be", "part", "of", "a", "herd.", "This", "is", "a", "personal", "preference,", "it’s", "not", "a", "value", "judgement", "on", "those", "who", "are", "looking", "for", "something", "different.", "Washington", "It’s", "a", "fact", "of", "the", "trail", "that", "many", "people", "choose", "to", "end", "their", "thru-hike", "within", "the", "first", "month.", "If", "that", "is", "the", "case", "for", "you,", "at", "least", "you", "will", "have", "experienced", "hiking", "through", "Washington,", "one", "of", "the", "most", "incredible", "portions", "of", "the", "trail.", "And", "the", "beauty", "begins", "right", "away", "-", "the", "first", "30", "miles", "from", "Harts", "Pass", "to", "the", "Northern", "Terminus", "consistently", "ranks", "as", "one", "of", "the", "most", "favourite", "trail", "sections.", "A", "cool", "Desert", "Going", "NOBO", "through", "the", "desert", "in", "April", "/", "May", "is", "a", "gruelling", "experience.", "You", "have", "to", "be", "prepared", "for", "100+", "degree", "days", "and", "often", "little", "shade.", "SOBOs", "will", "hike", "through", "the", "desert", "in", "October", "and", "November,", "when", "daytime", "temperatures", "are", "likely", "to", "stay", "in", "the", "70s", "and", "80s,", "with", "lows", "in", "the", "30s", "and", "40s", "at", "night.", "Snow-free", "Sierras", "Once", "you", "reach", "the", "Sierra", "Nevada", "in", "September,", "almost", "all", "of", "the", "settled", "snow", "will", "have", "melted.", "There", "won’t", "be", "any", "bugs.", "Passes", "should", "be", "easy.", "You’ll", "be", "in", "great", "physical", "shape", "and", "ready", "to", "knock", "out", "25+", "mile", "days.", "Urgency", "and", "its", "effects", "on", "Trail", "Culture", "Urgency", "is", "a", "huge", "component", "of", "a", "SOBO", "thru-hike.", "You", "must", "be", "through", "the", "Sierras", "before", "the", "winter", "snow", "sets", "in", "for", "the", "winter.", "A", "standard", "SOBO", "attempt", "might", "begin", "around", "July", "1.", "The", "received", "wisdom", "tells", "us", "that", "the", "Sierra", "snows", "will", "arrive", "somewhere", "near", "October", "15th.", "None", "of", "this", "is", "set", "in", "stone!", "But", "using", "this", "as", "a", "rough", "guide,", "a", "hiker", "will", "have", "approximately", "100", "days", "to", "go", "1,800", "miles", "to", "Forester", "Pass,", "after", "which", "they" ], [ "descend", "out", "of", "the", "Sierras", "into", "the", "desert.", "This", "goal", "is", "paramount", "and", "in", "the", "forefront", "of", "a", "SOBO", "hiker’s", "mind.", "I", "rarely", "met", "anyone", "who", "didn’t", "have", "at", "least", "some", "background", "anxiety", "about", "making", "it", "in", "time.", "The", "flavour", "of", "a", "SOBO", "hike", "is", "therefore", "characterised", "by:", "Few", "zeroes", "Big", "mile", "days", "Pressure", "to", "hit", "your", "stride", "early", "(be", "very", "wary", "of", "this!)", "Brief", "town", "stops", "I", "believe", "this", "produces", "a", "trail", "culture", "that", "is", "quite", "different", "to", "the", "NOBO", "experience.", "There", "is", "very", "little", "“party", "culture”.", "Sometimes", "you", "will", "find", "yourself", "rushing", "through", "experiences", "that", "you", "wished", "you", "had", "longer", "to", "take", "in", "and", "enjoy.", "Self", "discipline", "is", "important.", "You", "might", "feel", "guilty", "when", "you’re", "not", "walking", "(a", "feeling", "that", "stayed", "with", "me", "even", "after", "I", "finished", "the", "trail)!", "There", "are", "also", "real", "positives", "that", "come", "from", "being", "part", "of", "the", "SOBO", "community.", "Most", "people", "are", "there", "because", "of", "a", "specific", "reason", "to", "go", "South,", "not", "just", "by", "default.", "Anecdotally", "I", "would", "say", "the", "level", "of", "experience", "and", "preparedness", "is", "higher.", "I", "had", "a", "really", "great", "time", "meeting", "people", "that", "had", "a", "focus", "and", "drive", "that", "matched", "my", "own.", "I", "didn’t", "really", "see", "any", "large", "Trail", "Families.", "Most", "people", "I", "met", "were", "looking", "for", "some", "degree", "of", "solitude,", "which", "would", "allow", "them", "better", "to", "connect", "with", "the", "surrounding", "nature.", "Several", "times", "I", "ran", "into", "oncoming", "NOBOs", "who", "travelled", "in", "groups", "of", "8", "to", "12,", "which", "felt", "completely", "anathema", "as", "a", "SOBO.", "Many", "SOBO", "hikers", "I", "spoke", "to", "really", "valued", "their", "independence", "and", "didn’t", "want", "to", "compromise", "their", "drive", "to", "reach", "the", "Southern", "Terminus.", "If", "their", "group", "was", "walking", "too", "slow,", "it", "was", "time", "to", "push", "on", "ahead", "alone.", "You’ll", "always", "meet", "more", "hikers", "ahead", "of", "you.", "I", "don’t", "want", "to", "make", "a", "value", "judgement.", "Different", "experiences", "are", "right", "for", "different", "people.", "Make", "a", "conscious", "decision", "-", "what", "am", "I", "looking", "for", "from", "my", "thru-hike?", "This", "has", "been", "elaborated", "in", "far", "more", "detail", "at", "PCT", "Southbound.", "Go", "check", "it", "out.", "But", "briefly:", "If", "it’s", "your", "first", "time", "on", "trail,", "and", "you", "have", "little", "experience", "with", "alpine", "hiking", "in", "the", "snow,", "aim", "to", "start", "7", "days", "after", "the", "snow", "depth", "at", "Harts", "Pass", "hits", "zero.", "You", "can", "find", "current", "snow", "levels", "for", "Harts", "Pass", "here", "If", "you’re", "experienced", "with", "walking", "through", "snow,", "you", "may", "be", "able", "to", "start", "earlier.", "Just", "remember", "that", "the", "road", "up", "to", "Harts", "Pass", "may", "not", "be", "completely", "passable,", "requiring", "some", "extra", "miles", "of", "walking.", "Anywhere", "between", "July", "1", "and", "July", "7", "is", "a", "good", "bet", "2020", "Permitting", "Changes", "For", "the", "2020", "season,", "the", "PCTA", "has", "restricted", "the", "number", "of", "daily", "permits", "for", "SOBO", "to", "15.", "I", "believe", "they", "also", "want", "to", "make", "sure", "that", "people", "start", "on", "their", "permit", "date.", "When", "applying", "for", "your", "SOBO", "permit,", "you", "will", "have", "no", "idea", "what", "the", "snow", "conditions", "are", "going", "to", "be", "like", "for", "that", "season.", "It", "will", "be", "impossible", "to", "precisely", "predict", "when", "to", "start.", "I", "have", "some", "personal", "feelings", "about", "the", "strict", "rules", "regarding", "start", "dates", "for", "SOBO", "hikers.", "I", "don’t", "believe", "people", "should", "be", "risking", "their", "lives", "to", "start", "on", "their", "permit", "date", "if", "the", "snow", "conditions", "are", "worse", "than", "they", "are", "comfortable", "with.", "The", "Snow", "Deadline", "The", "Sierra", "snow", "deadline", "is", "the", "key", "date", "to", "keep", "in", "your", "mind:", "approximately", "October", "15.", "It’s", "impossible", "to", "know", "exactly", "when", "the", "snow", "is", "going", "to", "arrive", "each", "year.", "There", "will", "be", "early", "snows", "that", "may", "last", "a", "day", "or", "two,", "but", "don’t", "signal", "the", "end", "of", "the", "season.", "You", "don’t", "have", "to", "get", "all", "the", "way", "to", "South", "Kennedy", "Meadows", "by", "the", "time", "the", "snow", "settles", "in.", "You", "will", "want", "to", "have", "completed", "Forester", "Pass", "by", "that", "time.", "This", "gives", "you", "a", "few", "extra", "days", "to", "play", "with.", "Work", "your", "way", "back", "from", "that", "date.", "Give", "yourself", "2.5", "weeks", "to", "get", "from", "South", "Lake", "Tahoe", "to", "Forester", "Pass.", "That", "means", "finishing", "NorCal", "by", "around", "September", "25th", "Fearmongering", "Keep", "the", "snow", "deadline", "firmly", "in", "the", "front", "of", "your", "mind.", "Keep", "on", "top", "of", "the", "weather", "reports", "as", "you", "approach", "the", "high", "passes.", "Seek", "advice", "from", "others", "on", "the", "trail,", "particularly", "those", "coming", "North.", "Watch", "the", "InciWeb", "website", "for", "wildfires.", "But", "be", "aware", "there", "is", "always", "a", "strong", "current", "of", "fearmongering", "in", "the", "trail", "community!", "Every", "hiker", "is", "managing", "their", "own", "fears", "and", "doubt", "about", "making", "it", "all", "the", "way", "to", "Campo.", "I", "was", "personally", "told", "about", "difficult", "snow", "crossings", "that", "never", "materialised,", "and", "wildfires", "that", "never", "existed.", "When", "someone", "gives", "you", "a", "report", "of", "adverse", "trail", "conditions,", "ask", "them:", "“did", "you", "personally", "see", "/", "experience", "this?", "Or", "are", "you", "reporting", "the", "information", "second", "hand", "from", "someone", "else?”.", "Try", "and", "get", "different", "multiple", "independent", "sources", "for", "information.", "The", "best", "sources", "of", "information", "are" ], [ "Ranger", "Stations", "in", "the", "area.", "If", "you", "are", "concerned,", "call", "them", "and", "ask", "for", "a", "report", "of", "conditions", "on", "the", "ground.", "Bubble", "Pace", "People", "on", "trail", "talk", "about", "the", "“Bubble”:", "a", "large", "grouping", "of", "hikers,", "all", "within", "maybe", "1", "week", "of", "each", "other,", "who", "are", "setting", "the", "average", "pace.", "Those", "in", "front", "and", "behind", "the", "bubble,", "particularly", "going", "SOBO,", "might", "see", "fewer", "people", "and", "spend", "more", "time", "hiking", "and", "camping", "alone.", "In", "2019", "I", "hiked", "solidly", "inside", "the", "Bubble.", "I’d", "sometimes", "see", "20+", "people", "at", "major", "town", "stops.", "Here", "was", "my", "2019", "pace:", "Mile", "Stop", "Date", "0", "Northern", "Terminus", "6/29", "366", "White", "Pass", "7/22", "505", "Cascade", "Locks", "(End", "of", "WA)", "7/28", "755", "Shelter", "Cove", "8/10", "935", "Ashland", "(End", "of", "OR)", "8/18", "1344", "Chester", "(Halfway)", "9/05", "1563", "S.", "Lake", "Tahoe", "(End", "of", "NorCal)", "9/13", "1744", "Reds", "Meadow", "9/23", "1892", "Witney", "10/01", "1959", "S.", "Kennedy", "Meadows", "(End", "of", "Sierra)", "10/04", "2387", "Big", "Bear", "Lake", "10/23", "2653", "Campo", "(End", "of", "PCT)", "11/04", "Tracking", "Miles", "I", "created", "a", "Google", "Spreadsheet", "for", "tracking", "miles.", "It", "calculates:", "How", "many", "miles", "you’ve", "done", "each", "day", "Average", "Miles", "/", "Day", "Average", "Miles", "/", "Day", "(10", "day", "rolling", "average)", "Estimated", "finish", "date,", "based", "on", "Average", "Miles", "/", "Day", "Estimated", "finish", "date,", "based", "on", "Average", "Miles", "/", "Day", "(10", "day", "rolling", "average)", "Here", "is", "the", "spreadsheet", "Make", "a", "copy", "of", "the", "sheet", "to", "your", "account", "and", "start", "filling", "it", "in", "from", "the", "Northern", "Terminus", "Gear", "Philosophy", "I", "found", "two", "different", "approaches", "to", "how", "people", "selected", "gear", "for", "the", "trail:", "One", "continuous", "hike", "Five", "separate", "hikes", "One", "continuous", "hike", "You", "choose", "one", "set", "of", "equipment", "to", "carry", "from", "Canada", "to", "Mexico,", "through", "all", "environments,", "temperatures,", "and", "weather", "conditions.", "This", "comes", "with", "the", "clear", "benefit", "of", "simplicity", "-", "you", "don’t", "have", "to", "spend", "as", "much", "money", "and", "no", "swapping", "in", "and", "out", "is", "required.", "There’s", "rarely", "a", "chance", "you’ll", "be", "caught", "off-guard", "by", "conditions.", "One", "friend", "I", "hiked", "with", "on", "the", "trail", "described", "it", "as", "more", "“pure”", "experience.", "The", "obvious", "downside", "here", "is", "that", "for", "much", "of", "the", "trail", "you’ll", "be", "carrying", "things", "that", "are", "overkill", "for", "your", "environment.", "Having", "a", "heavy,", "warm,", "10", "degree", "F", "sleeping", "bag", "is", "largely", "unnecessary", "for", "the", "majority", "of", "Oregon", "and", "Northern", "California.", "A", "double", "wall", "shelter", "in", "the", "Desert", "is", "overkill", "when", "it", "barely", "rains", "and", "there", "are", "no", "nighttime", "bugs.", "On", "my", "thru-hike", "in", "2019,", "I", "didn’t", "set", "up", "my", "shelter", "once", "after", "Mount", "Whitney.", "That’s", "750", "miles", "carrying", "an", "item", "that", "could", "be", "switched", "out", "for", "something", "much", "lighter", "such", "as", "a", "tarp.", "Five", "separate", "hikes", "If", "you", "have", "the", "luxury", "of", "owning", "multiple", "pieces", "of", "gear", "that", "are", "suited", "to", "different", "seasons,", "my", "personal", "recommendation", "is", "treating", "the", "trip", "as", "though", "you", "were", "doing", "5", "separate", "hikes.", "Each", "portion", "(Washington,", "Oregon,", "NorCal,", "Sierra,", "SoCal)", "brings", "different", "weather", "conditions,", "bug", "intensity", "and", "temperature", "variations.", "Here", "is", "a", "breakdown", "of", "each", "section", "and", "some", "ideas", "of", "what", "gear", "might", "be", "swapped", "in", "or", "out:", "Section", "Conditions", "Thoughts", "Washington", "Wet,", "cold,", "buggy", "This", "is", "where", "you", "need", "most", "of", "your", "gear.", "Perhaps", "consider", "synthetic", "clothing", "over", "down,", "which", "will", "trap", "warmth", "better", "when", "wet", "Oregon", "Dry,", "warm,", "buggy", "Fewer", "layers,", "lighter", "sleeping", "bag", "and", "pad,", "lighter", "rain", "gear", "NorCal", "Dry,", "hot", "Even", "fewer", "layers", "and", "lighter", "bag", "and", "pad,", "long", "pants", "not", "necessary", "to", "repel", "bugs.", "Minimal", "sleeping", "clothes.", "This", "was", "my", "lightest", "pack", "weight", "Sierra", "Snow,", "very", "cold,", "no", "bugs", "Shelter", "without", "bug", "protection.", "Be", "ready", "for", "snow.", "Heavy", "bag", "and", "pad.", "Warm", "sleep", "layers!", "SoCal", "Dry,", "somewhat", "cold,", "no", "bugs", "Minimal", "shelter.", "Some", "warm", "layers", "This", "strategy", "requires", "thought,", "planning,", "additional", "expense", "(equipment", "costs", "and", "mailing", "fees),", "a", "small", "amount", "of", "additional", "risk", "of", "things", "not", "being", "there", "when", "you", "need,", "and", "a", "higher", "tolerance", "for", "weather", "variations.", "The", "upside", "is", "a", "much", "lower", "pack", "weight!", "If", "you’re", "planning", "on", "going", "ultralight,", "this", "strategy", "should", "be", "seriously", "considered.", "I", "think", "a", "common", "theme", "amongst", "hikers", "I", "met", "on", "the", "trail", "was", "thinking", "about", "what", "they", "were", "carrying", "and", "what", "they", "didn’t", "need.", "It’s", "a", "very", "gratifying", "feeling", "to", "know", "you", "are", "carrying", "only", "what", "you", "need,", "knowing", "what", "you", "can", "do", "without.", "It", "becomes", "a", "mindset,", "one", "that", "I’ve", "found", "useful", "back", "in", "regular", "life.", "None", "of", "this", "strictly", "requires", "pre-planning.", "You", "can", "decide", "to", "swap", "out", "or", "mail", "gear", "onwards", "while", "you", "are", "actually", "out", "there.", "This", "might", "be", "beneficial", "-", "you’ll", "get", "an", "idea", "of", "exactly", "what", "you", "need", "in", "your", "current", "section", "through", "experience" ], [ ",", "not", "guesswork.", "I", "would", "certainly", "recommend", "keeping", "a", "box", "of", "gear", "with", "the", "person", "who", "mails", "your", "boxes.", "This", "will", "be", "your", "alternative", "equipment", "you", "might", "need", "on", "the", "trail.", "Preparation", "Fitness", "The", "advice", "over", "at", "PCT", "Southbound", "is", "that", "fitness", "preparation", "should", "be", "your", "number", "one", "concern", "leading", "up", "to", "your", "hike.", "I", "mostly", "agree", "with", "this.", "The", "better", "shape", "you", "are", "in", "when", "starting", "at", "Harts", "Pass,", "the", "better", "experience", "you", "will", "have", "in", "the", "first", "month", "of", "your", "hike.", "However,", "training", "for", "long", "distance", "hiking", "isn’t", "particularly", "easy.", "There’s", "no", "substitute", "for", "actual", "hiking,", "which", "takes", "a", "lot", "of", "time.", "I", "found", "myself", "getting", "anxious", "about", "not", "having", "done", "enough", "training", "as", "my", "start", "date", "approached.", "Making", "time", "to", "train", "wasn’t", "easy", "when", "I", "had", "to", "move", "out", "of", "my", "apartment,", "put", "all", "my", "things", "in", "storage,", "hand", "over", "work", "at", "my", "job,", "and", "prepare", "my", "Washington", "resupply!", "I", "always", "felt", "behind", "in", "my", "preparation.", "I", "was", "sacrificing", "my", "mental", "wellbeing", "by", "putting", "extra", "pressure", "on", "myself.", "Take", "an", "honest", "look", "at", "your", "physical", "condition.", "Do", "you", "live", "an", "active", "life?", "Do", "you", "run", "/", "hike", "/", "lift", "/", "climb", "/", "play", "team", "sports?", "If", "you", "do,", "then", "I", "feel", "like", "you", "can", "make", "up", "any", "fitness", "gap", "on", "the", "trail", "itself,", "even", "in", "the", "tough", "Washington", "environment.", "Any", "extra", "preparation", "you", "do", "is", "a", "bonus.", "If", "you", "live", "an", "inactive", "life", "or", "find", "cardiovascular", "exercise", "difficult,", "then", "I", "think", "fitness", "preparation", "is", "incredibly", "important", "and", "should", "be", "your", "number", "one", "priority", "pre-trail.", "You’re", "going", "to", "be", "thrown", "into", "the", "deep", "end", "on", "a", "SOBO", "hike.", "Injury", "Management", "If", "you", "have", "any", "pre-existing", "injuries", "that", "you", "suspect", "may", "reoccur", "on", "the", "trail,", "this", "should", "be", "your", "primary", "concern.", "Injuries,", "particularly", "stress-related", "such", "as", "shin", "splints,", "plantar", "fasciitis,", "or", "anything", "achilles", "related,", "are", "hugely", "prevalent", "on", "the", "trail", "and", "commonly", "end", "people’s", "adventures", "barely", "after", "they", "started.", "The", "trail", "is", "going", "to", "beat", "your", "body", "into", "a", "pulp", "in", "the", "first", "month.", "It’s", "going", "to", "break", "down", "before", "it", "has", "time", "to", "adapt.", "Do", "whatever", "you", "can", "do", "ahead", "of", "time:", "specific", "exercises,", "stretching,", "PT,", "conditioning", "or", "whatever", "it", "is", "that", "works", "for", "you.", "Keeping", "Perspective", "My", "biggest", "day", "on", "trail", "was", "40", "miles.", "If", "you", "told", "me", "before", "hand", "that", "I", "would", "do", "a", "40", "mile", "day,", "I", "would", "have", "laughed", "at", "you.", "During", "preparation,", "I", "was", "stressed", "out", "at", "the", "idea", "of", "even", "doing", "25’s", "each", "day,", "a", "goal", "I", "knew", "I", "would", "need", "to", "hit", "in", "order", "to", "make", "it", "to", "the", "end.", "Please", "don’t", "stress!", "Your", "body", "will", "adapt.", "You", "will", "achieve", "things", "you", "never", "imagined", "possible.", "Your", "benchmarks", "of", "what", "you", "consider", "a", "“big", "day”", "will", "change.", "You’ll", "tap", "into", "a", "source", "of", "strength", "that", "perhaps", "you’ve", "never", "used", "before.", "This", "is", "one", "of", "the", "greatest", "rewards", "of", "the", "trail", "and", "it’s", "waiting", "for", "you!", "Mental", "Preparation", "Mental", "preparation", "is", "hugely", "underrated,", "and", "something", "I", "hadn’t", "considered", "much", "until", "I", "read", "the", "wonderful", "book", "Pacific", "Crest", "Trials.", "I", "think", "everyone", "approaches", "the", "hike", "with", "a", "different", "level", "of", "confidence.", "You", "might", "begin", "your", "trip", "feeling", "like", "you’re", "about", "to", "finally", "fulfil", "your", "destiny.", "That", "all", "your", "life", "decisions", "have", "led", "you", "to", "this", "wonderful", "adventure", "and", "it’s", "happening", "right", "now!", "This", "is", "your", "moment,", "your", "success", "is", "ordained", "and", "undeniable.", "On", "the", "other", "hand,", "you", "might", "be", "racked", "with", "nervousness", "and", "anxiety.", "Full", "of", "doubt.", "Can", "I", "make", "it?", "What", "the", "f**k", "was", "I", "thinking,", "this", "is", "insane!", "I", "can’t", "do", "this.", "I", "haven’t", "prepared", "enough.", "I’m", "foregoing", "comfort,", "friends,", "an", "easy", "life,", "certainty,", "routine,", "all", "to", "be", "out", "here.", "Likely", "you", "are", "somewhere", "between", "these", "two", "poles.", "It", "is", "my", "strong", "opinion", "that", "the", "closer", "you", "are", "to", "the", "former,", "the", "better", "your", "experience", "is", "going", "to", "be", "and", "the", "more", "chance", "you", "have", "at", "success.", "Dealing", "with", "anxiety", "is", "far", "from", "an", "easy", "thing.", "Each", "person", "needs", "to", "approach", "it", "differently.", "Is", "there", "something", "you", "can", "do", "to", "take", "the", "weight", "off", "your", "mind", "and", "aid", "your", "mental", "preparation", "for", "the", "trail?", "Thousands", "of", "people", "have", "come", "before", "you,", "successfully", "completed", "their", "hike,", "and", "want", "to", "channel", "this", "advice", "to", "you:", "it’s", "going", "to", "be", "great!", "You’re", "going", "to", "be", "fine.", "It’s", "going", "to", "work", "out,", "even", "if", "you", "might", "not", "see", "it", "yet.", "The", "first", "3", "weeks", "NOBOs", "have", "a", "big", "advantage", "at", "the", "start", "of", "their", "hike.", "They", "have", "no", "big", "deadline", "to", "hit", "yet", "and", "they", "start", "in", "some", "moderate", "terrain", "/", "elevation.", "SOBOs", "don’t", "have", "that", "luxury!", "SOBOs", "feel", "the", "pressure,", "and", "that", "can", "make", "us" ], [ "make", "poor", "decisions!", "I", "can’t", "stress", "this", "enough…", "Start", "slow!", "You", "may", "want", "to", "hit", "an", "overall", "walking", "average", "of", "25", "miles", "a", "day,", "but", "please", "don’t", "start", "at", "that", "pace!", "The", "first", "3", "weeks", "is", "when", "so", "many", "people", "suffer", "stress", "injuries", "from", "their", "body", "not", "being", "used", "to", "repeated", "hard", "days.", "And", "the", "days", "are", "hard", "in", "Washington.", "I", "got", "Shin", "Splints.", "So", "did", "many", "of", "my", "fellow", "hikers.", "A", "good", "friend", "was", "knocked", "off", "trail", "permanently", "due", "to", "Achilles", "issues", "that", "came", "on", "within", "the", "first", "300", "miles.", "Plantar", "Fasciitis", "is", "common.", "For", "me,", "I", "felt", "fit", "enough", "to", "do", "25s", "each", "day", "right", "out", "of", "the", "gate,", "but", "my", "body", "was", "not", "ready", "for", "it.", "This", "trip", "is", "long.", "You", "have", "a", "lot", "of", "time", "to", "make", "up", "the", "miles", "in", "Oregon", "and", "NorCal.", "Hitting", "30s", "and", "even", "40s", "in", "those", "states", "were", "not", "uncommon", "for", "me", "-", "my", "body", "had", "hardened", "into", "an", "unbeatable", "walking", "machine.", "Don’t", "get", "hurt", "while", "you’re", "still", "soft", "clay.", "Go", "easy", "on", "yourself", "The", "first", "few", "weeks", "are", "going", "to", "be", "incredibly", "visceral.", "A", "relentless", "tide", "of", "new", "people", "to", "meet,", "skills", "to", "learn,", "and", "limits", "to", "find.", "You", "might", "start", "doubting", "yourself,", "feeling", "homesick,", "wondering", "what", "the", "f**k", "you’re", "doing", "out", "here.", "Take", "it", "easy.", "Spend", "an", "extra", "day", "in", "town", "if", "you", "need", "it.", "Vocalise", "your", "thoughts;", "there’s", "a", "good", "chance", "others", "are", "feeling", "the", "same", "way.", "You’re", "not", "out", "there", "alone", "-", "there’s", "a", "community", "of", "people", "there", "to", "support", "you.", "The", "transition", "from", "regular", "life", "to", "trail", "life", "can", "be", "jarring", "at", "first.", "If", "you’re", "feeling", "out", "of", "your", "depth,", "give", "yourself", "at", "least", "3", "weeks", "before", "making", "the", "decision", "to", "leave", "the", "trail.", "Your", "brain", "might", "be", "screaming", "at", "you", "to", "trade", "in", "those", "trail", "runners", "for", "your", "old,", "comfortable", "life.", "Stick", "it", "out", "as", "long", "as", "you", "can!", "There’s", "no", "shame", "in", "quitting,", "but", "make", "sure", "you’ve", "given", "it", "a", "real", "chance", "first.", "Transport", "to", "Harts", "Pass", "Most", "SOBO", "thru-hikes", "begin", "at", "Harts", "Pass", "trailhead.", "It", "is", "also", "possible", "to", "start", "at", "Holman", "Pass,", "but", "far", "fewer", "people", "choose", "that", "option.", "The", "two", "clear", "options", "to", "get", "to", "Harts", "Pass", "are", "as", "follows:", "From", "Wenatchee,", "take", "public", "transport", "to..", "Winthrop,", "then", "hitch", "to", "the", "trailhead", "Twisp,", "then", "hire", "the", "Classic", "Mountain", "Cabbie", "(private", "taxi)", "to", "drive", "to", "the", "trailhead", "From", "Seattle,", "have", "someone", "drive", "you", "(or", "hitch)", "to", "Harts", "Pass", "I", "would", "recommend", "checking", "out", "the", "PCTA", "page", "for", "Getting", "to", "the", "Northern", "Terminus.", "I", "would", "personally", "recommend", "getting", "to", "Wenatchee", "and", "taking", "public", "transport", "to", "Winthrop.", "It", "is", "easy", "and", "convenient,", "and", "you’re", "likely", "to", "meet", "a", "bunch", "of", "SOBOs", "on", "the", "bus!", "The", "hitch", "to", "Harts", "Pass", "is", "pretty", "easy", "if", "the", "snow", "has", "completely", "melted", "at", "the", "trailhead.", "Your", "steps", "are:", "Wenatchee", "to", "Pateros.", "You", "can", "buy", "a", "ticket", "at", "the", "counter", "or", "online.", "If", "you", "purchase", "online", "make", "sure", "you", "PRINT", "your", "ticket", "(not", "mobile", "phone)!", "Pateros", "to", "Twisp", "(purchase", "on", "the", "bus)", "Twisp", "to", "Winthrop", "(purchase", "on", "the", "bus)", "To", "get", "to", "Wenatchee", "from", "Seattle,", "either:", "Fly", "(Alaska", "Airways).", "For", "me,", "the", "cost", "wasn’t", "that", "much", "more", "to", "go", "to", "Wenatchee", "than", "to", "Seattle.", "Take", "the", "bus", "(Wenatchee", "Valley", "Shuttle)", "If", "you’re", "like", "me,", "you", "might", "find", "the", "idea", "of", "trying", "to", "hitch", "to", "Harts", "Pass", "a", "bit", "daunting.", "I", "had", "no", "hitching", "experience", "at", "that", "point.", "Overwhelmingly", "the", "feedback", "I", "got", "was", "that", "getting", "a", "hitch", "was", "easy", "and", "fast.", "Resupply", "Resupply", "Spreadsheets", "I’m", "not", "going", "to", "duplicate", "what", "is", "already", "out", "there.", "There", "are", "some", "wonderful", "resupply", "guides", "for", "SOBO", "in", "spreadsheet", "form.", "Make", "a", "copy", "of", "them", "into", "your", "account.", "Choose", "one", "that", "works", "well", "for", "you.", "The", "Sierra", "Resupply", "Guide", "As", "I", "approached", "the", "end", "of", "NorCal,", "I", "found", "myself", "unprepared", "for", "how", "to", "get", "through", "the", "Sierra.", "I", "hadn’t", "really", "given", "much", "thought", "about", "resupply", "because", "up", "until", "then", "it", "was", "pretty", "easy", "-", "I", "could", "do", "much", "of", "it", "on", "trail,", "there", "were", "plenty", "of", "trail", "towns", "to", "choose", "from,", "and", "no", "passes", "to", "exit", "from.", "The", "Sierra", "is", "a", "section", "worth", "taking", "time", "to", "plan", "for", "ahead", "of", "time!", "Even", "if", "you", "don’t", "want", "to", "commit", "on", "one", "strategy", "right", "away,", "know", "your", "options.", "Overview", "Here", "are", "the", "prominent", "resupply", "points", "through", "the", "Sierra:", "Mile", "On-Trail", "Off-Trail", "Comment", "1636", "-", "N." ], [ "Kennedy", "Meadows", "Good", "store", "+", "Mail.", "Tricky", "hitch", "1710", "Tuolumne", "Meadows", "-", "Poor", "store", "selection", "1746", "Red’s", "Meadow", "Mammoth", "Lakes", "Easy", "hitch", "out", "to", "Mammoth.", "Poor", "store", "selection", "at", "Red’s", "1774", "-", "Vermillion", "Valley", "Resort", "A", "quick", "boat", "ride", "or", "side", "trail.", "See", "“The", "Resorts”", "section", "1795", "Muir", "Trail", "Ranch", "-", "Pretty", "much", "on", "trail.", "See", "“The", "Resorts”", "section", "1846", "-", "Independence", "or", "Bishop", "via", "Kearsarge", "Pass", "See", "“Exit", "Points”", "section", "1907", "-", "Lone", "Pine", "via", "Trail", "Pass", "1950", "S.", "Kennedy", "Meadows", "-", "1", "mile", "road", "walk", "Exit", "Points", "The", "Sierra", "is", "unique", "in", "that", "the", "trail", "does", "not", "cross", "many", "town-accessible", "roads,", "particularly", "between", "Red’s", "Meadow", "and", "South", "Kennedy", "Meadows.", "This", "means", "that", "any", "resupply", "must", "be", "done", "on-trail", "at", "one", "of", "the", "resorts", "(VVR", "or", "MTR),", "or", "by", "“exiting”", "using", "a", "trail", "that", "intersects", "the", "PCT.", "The", "two", "commonly-used", "exit", "points", "are", "Kearsarge", "Pass", "(7.5", "miles)", "and", "Bishop", "Pass", "(12", "miles).", "Both", "are", "hard", "work", "-", "you", "can", "treat", "both", "of", "them", "as", "normal", "“pass”", "attempts", "in", "the", "Sierras,", "such", "as", "Muir", "or", "Forester", "Pass.", "They", "involve", "a", "steep", "climb", "up", "to", "a", "high", "peak", "(>", "11,000", "ft),", "then", "long", "descent", "to", "a", "trailhead.", "These", "passes", "will", "drop", "you", "off", "at", "a", "trailhead", "parking", "lot.", "I", "didn’t", "hear", "of", "anyone", "having", "any", "issues", "getting", "a", "hitch,", "but", "be", "prepared", "to", "wait", "multiple", "hours", "or", "even", "overnight", "if", "you", "get", "there", "at", "a", "bad", "time.", "Hitches", "to", "Bishop", "from", "Kearsarge", "trailhead", "might", "involve", "a", "transfer", "in", "Independence", "and", "a", "40", "minute", "ride.", "And", "you", "have", "to", "get", "back", "and", "do", "it", "all", "again.", "All", "this", "makes", "the", "Bishop", "exit", "easily", "a", "2-day", "affair.", "The", "Resorts", "-", "convenient,", "but", "expensive", "There", "are", "two", "mountain", "resorts", "located", "pretty", "much", "on-trail:", "Vermillion", "Valley", "Resort", "(VVR)", "and", "Muir", "Trail", "Ranch", "(MTR).", "Both", "are", "essentially", "mail-resupply", "only.", "They", "are", "very", "convenient!", "But", "you", "must", "prep", "these", "resupplies", "ahead", "of", "time", "if", "you", "want", "to", "use", "them.", "Furthermore,", "they", "are", "expensive!", "For", "VVR,", "at", "the", "time", "of", "writing", "(2020", "season)", "according", "to", "the", "website:", "The", "fee", "for", "Packages", "scheduled", "for", "a", "May", "pick", "up", "is", "$50.00", "or", "after", "September", "15th", "-", "thru", "October", "Pick-Up", "is", "$50.00", "You’ll", "be", "charged", "extra", "if", "the", "package", "weighs", ">", "25", "lbs.", "Furthermore:", "VVR", "at", "Edison", "Lake", "is", "approximately", "two", "hours", "from", "the", "nearest", "U.S.", "Post", "Office", "or", "the", "U.P.S.", "drop", "point.", "Because", "of", "this", "we", "only", "pickup", "packages", "once", "or", "twice", "a", "week.", "Keep", "this", "in", "mind", "when", "planning", "your", "package", "arrival", "date.", "Please", "be", "sure", "that", "you", "send", "your", "package", "to", "arrive", "10-14", "days", "before", "YOU", "arrive!", "MTR", "is", "even", "more", "expensive:", "The", "service", "fee", "is", "US$85.00", "for", "up", "to", "25", "pounds.", "(Buckets", "weighing", "over", "25", "pounds", "will", "be", "charged", "US$2.00", "per", "pound", "overage", "fee.)", "..", "and", "must", "be", "mailed", "in", "a", "waterproof", "plastic", "bucket", "found", "at", "a", "hardware", "store.", "Resort", "Closures", "Both", "resorts", "will", "close", "their", "doors", "for", "resupply", "packages", "at", "some", "point", "during", "the", "SOBO", "season.", "Unfortunately,", "this", "is", "usually", "before", "every", "hiker", "has", "past", "through.", "Hikers", "who", "are", "moving", "slower", "than", "the", "main", "“bubble”", "risk", "not", "being", "able", "to", "pick", "up", "their", "resupply.", "If", "you", "choose", "to", "use", "the", "resorts,", "keep", "checking", "the", "resort", "websites", "-", "they", "will", "tell", "you", "the", "closing", "date.", "However,", "there’s", "no", "guarantee", "that", "this", "date", "will", "be", "honoured!", "The", "resorts", "may", "close", "several", "days", "before", "the", "date", "on", "the", "website.", "Estimate", "your", "arrival", "date", "for", "the", "resort", "you’re", "going", "to", "use.", "If", "you", "are", "within", "4", "days", "of", "when", "that", "resort", "is", "due", "to", "close,", "consider", "not", "using", "it.", "Get", "as", "much", "info", "as", "you", "can", "as", "you", "approach.", "Call", "the", "resort", "directly,", "on", "the", "phone.", "Speak", "to", "hikers", "going", "NOBO.", "If", "you", "are", "unsure", "as", "you", "approach,", "bring", "enough", "food", "to", "reach", "Bishop!", "Never", "risk", "running", "out", "of", "food", "in", "the", "Sierras!", "Carry", "Capacity", "Many", "people", "who", "use", "one", "of", "the", "resorts", "above", "will", "do", "so", "to", "avoid", "exiting", "the", "trail", "using", "one", "of", "the", "passes.", "This", "will", "put", "you", "in", "for", "a", "long", "food", "carry!", "Muir", "Trail", "Ranch", "->", "South", "Kennedy", "Meadows:", "155", "miles", "Vermillion", "Valley", "Resort", "->", "South", "Kennedy", "Meadows:", "176", "miles", "Red’s", "Meadow", "Resort", "->", "South", "Kennedy", "Meadows:", "204", "miles", "Certainly", "not", "impossible", "(I", "would", "guess", "that", "~20%", "of", "people", "went", "for", "this", "option).", "This", "section", "of", "trail", "is", "both", "very", "difficult", "on", "the", "body,", "and", "extremely", "beautiful,", "so", "you", "may", "not" ], [ "be", "doing", "30", "mile", "days.", "Staying", "on", "vs", "Getting", "off", "A", "single,", "clean", "push", "through", "the", "high", "Sierra", "without", "exiting", "is", "a", "wonderful", "experience.", "It", "saves", "you", "a", "lot", "of", "time", "and", "keeps", "you", "in", "the", "mountains.", "If", "you", "have", "your", "resupply", "sorted", "there", "are", "fewer", "things", "to", "worry", "about", "when", "you’re", "out", "there", "hiking.", "For", "me", "personally,", "leaving", "the", "trail", "and", "taking", "a", "zero", "day", "in", "Bishop", "was", "exactly", "what", "my", "mind", "and", "body", "needed.", "This", "section", "is", "long,", "tiring,", "breathtaking,", "and", "the", "weather", "can", "be", "highly", "variable.", "I", "got", "out,", "enjoyed", "a", "hot", "shower", "and", "bed,", "purchased", "an", "extra", "layer", "of", "clothing,", "and", "relaxed.", "It’s", "a", "personal", "choice", "-", "do", "what", "is", "right", "for", "you.", "Even", "if", "you", "planned", "to", "do", "a", "single", "push,", "always", "know", "you", "can", "bail", "if", "you", "need", "a", "break", "or", "the", "weather", "turns", "ugly.", "Saving", "some", "time", "at", "North", "Kennedy", "Meadows", "The", "default", "option", "seems", "to", "be", "to", "hitch", "into", "North", "Kennedy", "meadows,", "resupply,", "pick", "up", "a", "bear", "box,", "and", "enjoy", "their", "wood-burning", "stove!", "UPDATE:", "It", "appears", "Sonora", "Pass", "Resupply", "company", "will", "be", "closed", "for", "2020,", "and", "perhaps", "beyond.", "The", "hitch", "can", "be", "a", "bit", "gnarly.", "A", "few", "hikers", "this", "year", "paid", "for", "Sonora", "Pass", "Resupply,", "a", "company", "that", "will", "deliver", "a", "full", "resupply", "(and", "bear", "box)", "direct", "to", "the", "trailhead.", "Plan", "it", "ahead", "of", "time", "and", "expect", "to", "pay", "an", "overhead.", "Example", "Strategies", "The", "Default", "Pre-planning:", "none", "Time:", "consuming", "Cost", "overhead:", "none", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Hitch", "Box", "109", "Mammoth", "Lakes", "Hitch", "Grocery", "Store", "118", "+", "7.5", "side", "trail", "@", "Kearsarge", "Bishop", "Hitch", "Grocery", "Store", "86", "Requires", "zero", "ahead-of-time", "planning,", "so", "very", "popular.", "Adds", "normally", "another", "2-3", "days", "onto", "your", "hike.", "No", "long", "carries.", "You", "get", "to", "experience", "the", "great", "towns", "of", "Mammoth", "Lakes", "and", "Bishop.", "Variation:", "send", "a", "box", "to", "Red’s", "Meadow", "instead", "of", "hitching", "to", "Mammoth", "Lakes", "The", "Single", "Push", "Pre-planning:", "a", "lot", "Time:", "speedy", "Cost", "overhead:", "a", "lot", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Sonora", "Pass", "Resupply", "on-trail", "Mail", "order", "items", "109", "Red’s", "Meadow", "On-trail", "Box", "50", "MTR", "On-trail", "Box", "155", "Variation:", "send", "a", "box", "to", "Tuolumne", "Meadows", "instead", "of", "Red’s", "meadow.", "It", "spaces", "out", "the", "resupply", "stops", "better,", "however", "TM", "post", "office", "is", "closed", "for", "much", "of", "the", "weekend,", "and", "I", "know", "a", "bunch", "of", "people", "who", "got", "caught", "out", "by", "this!", "The", "Roll-the-Dice", "Pre-planning:", "not", "much", "Time:", "Depends", "on", "if", "you", "pull", "it", "off", "Cost", "overhead:", "none", "It", "is", "common", "knowledge", "that", "MTR", "has", "amazing", "hiker", "boxes,", "full", "of", "food", "that", "JMT", "hikers", "have", "overpacked", "for", "their", "trip!", "I’ve", "heard", "of", "cornucopias", "of", "Mountain", "House", "meals", "ready", "to", "be", "packed", "out.", "On", "the", "other", "hand,", "when", "I", "got", "there", "late", "September", "there", "was", "nothing!", "So", "here’s", "the", "plan:", "pack", "enough", "food", "out", "of", "Red’s", "to", "make", "it", "to", "Bishop", "(which", "is", "your", "backup", "plan).", "If", "you", "get", "to", "MTR", "and", "can", "resupply", "out", "of", "the", "hiker", "boxes,", "do", "it", "and", "push", "through", "to", "South", "Kennedy", "Meadows.", "Otherwise", "you’ll", "have", "to", "exit", "to", "Bishop.", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Sonora", "Pass", "Resupply", "on-trail", "Mail", "order", "items", "109", "Red’s", "Meadow", "On-trail", "Box", "50", "or", "118", "if", "the", "trick", "doesn’t", "work!!", "MTR", "On-trail", "Hiker", "boxes", "(!!!)", "155", "This", "is", "a", "good", "strategy", "if", "you", "think", "you", "might", "want", "to", "make", "the", "single", "push,", "but", "don’t", "want", "to", "plan", "or", "pay", "for", "it.", "YMMV!", "What", "to", "Expect", "Keep", "these", "two", "pages", "bookmarked", "on", "your", "phone:", "PCTA", "Weather", "-", "direct", "links", "to", "NOAA", "weather", "forecasts", "at", "~50", "mile", "increments", "Inciweb", "Wildfire", "Updates", "-", "up-to-date", "reports", "of", "all", "active", "wildfires", "in", "the", "US", "Washington", "Daytime", "Temperatures:", "Warm", "Nighttime", "Temperatures:", "Cold", "Snow", "on", "ground:", "Yes!", "Micro", "spikes", "&", "Ice", "Axe", "might", "be", "required", "Snow", "from", "sky:", "No", "Rain:", "Very", "much", "yes!", "Bugs:", "Yes,", "awful!", "Many", "mosquitos", "from", "Stevens", "Pass", "onwards", "Elevation", "change:", "Very", "large", "Water:", "Abundant", "Difficulty:", "Hard", "Washington", "is", "going", "to", "test", "you", "physically", "and", "mentally,", "not", "least", "due", "to", "the", "weather", "and", "conditions.", "This", "state", "will", "throw", "at", "you", "the", "largest", "variety", "of" ], [ "conditions", "you", "will", "probably", "experience", "on", "trail.", "Elevation", "gain", "and", "loss", "is", "greater", "here", "than", "any", "other", "part", "trail.", "Blowdowns", "and", "bushes", "that", "haven’t", "been", "cut", "back", "yet", "will", "slow", "you", "down.", "Washington", "is", "remote", "and", "it", "really", "feels", "that", "way.", "Long", "carries", "between", "towns", "are", "the", "norm", "(although,", "the", "addition", "of", "the", "Trout", "Lake", "shuttle", "service", "does", "provide", "relief).", "Cellphone", "service", "is", "almost", "non-existent", "in", "the", "Wildernesses.", "However,", "Washington", "blew", "me", "away", "with", "its", "beauty,", "ruggedness,", "magical", "pine", "forests,", "and", "alpine", "lakes.", "Over", "and", "again", "the", "North", "Cascades", "and", "Glacier", "peak", "top", "people’s", "lists", "of", "favourite", "section", "of", "the", "trail.", "Goat", "Rocks", "will", "take", "your", "breath", "away.", "The", "wildflowers", "of", "Mount", "Adams", "Wilderness", "particularly", "stick", "in", "my", "mind.", "Snow", "Most", "relevant", "is", "the", "snow", "on", "the", "ground.", "Depending", "on", "your", "start", "date,", "you", "might", "require", "micro", "spikes", "and", "even", "ice", "axe", "for", "the", "first", "3", "weeks", "of", "your", "trip.", "The", "conventional", "wisdom", "is", "to", "choose", "a", "start", "date", "at", "least", "7", "days", "after", "the", "snow", "level", "at", "Harts", "Pass", "hits", "zero.", "Any", "sooner", "and", "snow", "traversal", "will", "slow", "you", "down", "if", "you", "don’t", "have", "adequate", "experience.", "I", "found", "it", "hard", "to", "get", "good", "information", "about", "particular", "passes", "and", "sections", "-", "did", "we", "need", "the", "axe?", "Did", "we", "need", "the", "spikes?", "I", "would", "always", "recommend", "carrying", "spikes", "for", "the", "first", "3", "weeks.", "While", "at", "Harts", "Pass,", "ask", "people", "coming", "back", "from", "tagging", "the", "border", "about", "the", "snow", "conditions.", "You", "can", "leave", "unneeded", "equipment", "at", "the", "Harts", "Pass", "ranger", "station,", "and", "pick", "it", "up", "on", "your", "return.", "Check", "Guthook", "comments", "for", "Rock", "Pass", "(mile", "13.6)", "Fire", "Creek", "Pass", "(mile", "133.1)", "Rain", "Don’t", "be", "surprised", "if", "it", "rains", "every", "day", "from", "Harts", "Pass", "through", "to", "White", "Pass", "(the", "first", "3", "weeks).", "You", "might", "slog", "it", "4,000", "ft", "uphill,", "only", "to", "curse", "the", "persistent", "clouds", "and", "fog", "that", "can", "obscure", "any", "amazing", "views", "that", "would", "have", "made", "the", "payoff", "worthwhile.", "Stopping", "to", "dry", "out", "tents,", "clothing", "and", "sleeping", "bags", "will", "be", "an", "almost", "daily", "occurrence.", "Bugs", "Horrendous!", "Especially", "after", "the", "first", "week.", "Some", "of", "my", "lowest", "days", "on", "trail", "were", "due", "to", "bugs.", "You", "can", "barely", "take", "a", "5", "minute", "rest", "before", "you", "are", "consumed", "by", "a", "cloud", "of", "flying", "monsters.", "Get", "used", "to", "setting", "up", "your", "tent", "in", "record", "time,", "quickly", "leaping", "through", "the", "door,", "and", "spending", "the", "next", "5", "minutes", "squishing", "all", "the", "mosquitos", "that", "got", "inside.", "Bring", "a", "bug", "head-net", "Bring", "long", "wind", "or", "rain", "pants,", "or", "even", "bug-net", "pants", "Bring", "gloves", "Bring", "DEET", "Don’t", "let", "them", "get", "you", "down", "-", "they", "ease", "up", "in", "Oregon,", "and", "disappear", "in", "NorCal", "Oregon", "Daytime", "Temperatures:", "Hot", "Nighttime", "Temperatures:", "Warm", "Snow", "on", "ground:", "Almost", "none", "Snow", "from", "sky:", "No", "Rain:", "Little,", "but", "be", "prepared", "for", "a", "storm", "or", "two", "Bugs:", "Quite", "bad", "at", "the", "start,", "easing", "off", "towards", "the", "end", "Elevation", "change:", "Small", "-", "the", "flattest", "section", "of", "trail", "Water:", "Mostly", "good,", "but", "a", "couple", "of", "20-mile", "carries", "come", "to", "mind", "around", "Big", "Lake", "Difficulty:", "Easy", "Oregon", "is", "a", "welcomed", "respite", "after", "a", "difficult", "and", "draining", "Washington", "section.", "In", "some", "ways,", "it", "is", "nearly", "the", "polar", "opposite", "to", "Washington:", "very", "flat,", "towns", "/", "resorts", "every", "couple", "of", "days,", "and", "mild", "weather.", "Northern", "Oregon", "is", "incredibly", "scenic,", "particularly", "around", "Mount", "Jefferson", "and", "the", "Three", "Sisters", "Wilderness.", "You", "may", "be", "able", "to", "push", "some", "big-mile", "days", "here", "too,", "making", "up", "for", "a", "more", "cautious", "start", "through", "WA.", "Swapping", "Gear", "This", "might", "be", "the", "time", "to", "start", "considering", "switching", "out", "your", "cold-weather", "gear", "for", "lighter", "warm-weather", "options.", "Or", "at", "the", "very", "least", "mailing", "some", "unnecessary", "layers", "forward", "to", "Sierra", "City.", "The", "weather", "for", "the", "next", "800", "miles", "is", "going", "to", "be", "much", "warmer.", "Think", "about", "mailing", "out:", "Fleece", "or", "puffy", "(you", "only", "need", "one)", "Rain", "pants", "(unless", "this", "is", "your", "bug", "protection", "for", "your", "legs)", "Long", "sleeping", "underwear", "bottoms", "Long", "sleeve", "sleeping", "top", "(can", "be", "switched", "for", "t-shirt", "or", "something", "light)", "Gloves,", "woolly", "hat,", "balaclava", "Additionally,", "maybe", "switching", "out:", "A", "heavy", "sleeping", "bag", "for", "something", "in", "the", "30", "-", "40", "degree", "F", "range", "A", "heavy", "pad", "for", "a", "short", "pad", "You", "can", "potentially", "strip", "2", "-", "4", "lbs", "from", "your", "base", "weight", "if", "you’re", "ruthless", "about", "it.", "Northern", "California", "Daytime", "Temperatures:", "Very", "Hot", "Nighttime", "Temperatures:", "Warm", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "No", "Rain:", "Little", "Bugs:", "No", "mosquitos.", "Occasional", "gnats", "(around", "Dunsmuir", "/", "Mount", "Shasta)", "can", "be", "annoying", "Elevation", "change:", "Moderate", "to", "High", "Water" ], [ ":", "Less", "good.", "More", "water", "carries,", "especially", "in", "the", "first", "300", "miles.", "Difficulty:", "Hard", "Northern", "California", "ratchets", "up", "the", "difficulty", "once", "again.", "Elevation", "change", "is", "fairly", "high,", "but", "the", "first", "thing", "to", "expect", "when", "crossing", "the", "state", "line", "into", "California", "is", "scorching", "heat", "and", "exposed", "sections", "of", "trail", "with", "little", "shade.", "Aside", "from", "the", "ever-present", "view", "of", "Mount", "Shasta", "(the", "mountain", "not", "the", "town),", "the", "scenery", "isn’t", "quite", "as", "good", "as", "you’ve", "had", "it", "so", "far.", "The", "descent", "into", "Seiad", "Valley,", "long", "road", "walk,", "and", "brutal", "climb", "is", "particularly", "testing.", "After", "Belden", "however,", "the", "surroundings", "take", "on", "a", "decidedly", "more", "“Sierra”", "vibe.", "The", "weather", "cools", "and", "you’re", "treated", "to", "some", "great", "vistas", "as", "you", "approach", "Sierra", "City", "and", "Lake", "Tahoe.", "This", "was", "where", "I", "personally", "felt", "at", "my", "physical", "peak", "-", "I", "was", "hitting", "30+", "mile", "days", "consistently", "while", "getting", "excited", "at", "the", "prospect", "of", "the", "approaching", "Sierra", "Nevada", "mountains.", "NorCal-Sierra", "Boundary", "Guthook", "tells", "us", "the", "Sierra", "starts", "at", "South", "Lake", "Tahoe.", "I", "would", "strongly", "consider", "treating", "Sierra", "City", "as", "the", "starting", "point.", "After", "this,", "the", "weather", "cools", "dramatically", "especially", "at", "night.", "I", "wished", "I", "had", "mailed", "my", "cold-weather", "clothes", "to", "Sierra", "City,", "when", "I", "was", "freezing", "my", "butt", "off", "at", "night", "in", "the", "Desolation", "Wilderness.", "The", "Sierras", "Daytime", "Temperatures:", "Warm", "Nighttime", "Temperatures:", "Very", "Cold!", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "Yes", "Rain:", "More", "likely", "to", "be", "snow", "than", "rain", "Bugs:", "No", "Elevation", "change:", "High", "Water:", "Great", "-", "water", "everywhere", "Difficulty:", "Hard", "This", "is", "what", "you’ve", "been", "waiting", "for!", "The", "Sierras", "are", "like", "nothing", "else,", "so", "take", "it", "all", "in", "and", "enjoy.", "You’re", "gonna", "be", "working", "hard", "every", "day", "-", "big", "climbs", "over", "the", "various", "tall", "passes", "(Muir,", "Mather,", "Pinchot,", "Glen,", "and", "Forester)", "will", "really", "take", "it", "out", "of", "you,", "and", "put", "to", "the", "test", "all", "that", "preparation", "you’ve", "done", "over", "the", "last", "2", "months.", "Cold", "You’re", "gonna", "be", "grateful", "to", "have", "all", "your", "cold", "weather", "gear", "back,", "and", "might", "even", "want", "to", "consider", "packing", "out", "some", "extra", "just", "for", "this", "section.", "Temperatures", "at", "night", "can", "drop", "below", "15F.", "If", "you", "don’t", "feel", "comfortable", "that", "your", "sleeping", "bag", "and", "pad", "are", "up", "to", "the", "challenge,", "you", "can", "make", "up", "for", "it", "with", "more", "clothes.", "Everyone", "I", "hiked", "with", "said", "they", "slept", "in", "every", "single", "layer", "for", "at", "least", "one", "of", "the", "nights.", "Campsite", "selection", "is", "important.", "Choosing", "a", "site", "near", "the", "top", "of", "a", "pass", "might", "seem", "tempting", "but", "you’re", "likely", "in", "for", "a", "windy", "night.", "Similarly,", "cold", "air", "will", "settle", "at", "the", "very", "bottom", "of", "a", "valley", "or", "by", "a", "flowing", "stream.", "My", "coldest", "night", "was", "at", "Matterhorn", "Creek", "(mile", "1,691)", "because", "of", "poor", "campsite", "selection", "-", "I", "didn’t", "sleep", "a", "wink", ":(", "Blizzards", "Snow", "in", "the", "Sierras", "can", "be", "dangerous,", "especially", "because", "of", "the", "lack", "of", "options", "to", "bail", "to", "a", "nearby", "town.", "Keeping", "up-to-date", "weather", "forecasts", "can", "be", "really", "helpful", "(accepting", "that", "mountain", "forecasting", "can", "be", "a", "real", "crapshoot).", "Muir", "Trail", "Ranch,", "Tuolumne", "Meadows", "and", "I", "believe", "Vermillion", "Valley", "Resort", "will", "keep", "forecasts", "updated", "for", "hikers.", "Many", "emergency", "satellite", "devices", "have", "a", "weather", "forecast", "function.", "Plan", "where", "you", "can", "bail", "if", "things", "turn", "sour,", "and", "don’t", "be", "afraid", "to", "take", "an", "earlier", "pass", "if", "you", "need", "it.", "Altitude", "Effects", "Being", "up", "between", "10,000", "and", "13,000", "ft", "has", "a", "significant", "effect", "on", "the", "body.", "Even", "if", "you", "don’t", "get", "sick,", "you’re", "likely", "to", "be", "slow", "and", "tired", "every", "day", "until", "you", "are", "fully", "acclimated.", "If", "you’re", "feeling", "exhausted", "and", "don’t", "know", "why,", "don’t", "be", "disheartened!", "Your", "strength", "should", "come", "back", "to", "you", "over", "time.", "Don’t", "forget", "that", "you", "can", "lose", "all", "your", "gains", "if", "you", "spend", "extended", "time", "in", "low", "altitude", "trail", "towns!", "A", "good", "example:", "Bishop", "sits", "at", "4,148", "ft", "altitude.", "Within", "the", "next", "day", "or", "two", "you’ll", "be", "hitting", "13,124", "ft", "at", "Forester", "Pass.", "Southern", "California", "Daytime", "Temperatures:", "Mostly", "warm,", "some", "hot", "days", "Nighttime", "Temperatures:", "Cold", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "No", "Rain:", "Unlikely", "Bugs:", "No", "mosquitos,", "some", "gnats", "Elevation", "change:", "Medium", "(San", "Jacinto", "is", "the", "exception)", "Water:", "Bad", "-", "expect", "long", "carries", "between", "water", "caches", "Difficulty:", "Medium", "The", "desert", "of", "SoCal", "is", "the", "longest", "of", "the", "5", "sections,", "stretching", "from", "South", "Kennedy", "Meadows", "to", "the", "Mexican", "Border,", "a", "total", "of", "~" ], [ "700", "miles.", "The", "days", "are", "much", "shorter", "now,", "so", "be", "prepared", "to", "do", "some", "night", "hiking", "(which", "might", "actually", "be", "beneficial", "to", "avoid", "the", "heat", "of", "the", "day).", "Water", "is", "extremely", "scarce,", "even", "for", "the", "NOBOs.", "You’ll", "likely", "be", "doing", "frequent", "20+", "mile", "water", "carries.", "Campsites", "near", "water", "sources", "will", "fill", "up", "with", "hikers", "all", "with", "the", "same", "plan,", "so", "expect", "to", "bunch", "up", "and", "lose", "some", "of", "that", "solitude", "you", "enjoyed", "at", "the", "start", "of", "your", "hike.", "The", "desert", "can", "be", "grueling", "for", "many", "people.", "It", "was", "for", "me.", "My", "mind", "and", "body", "were", "exhausted,", "I", "missed", "the", "sweeping", "vistas", "and", "lush", "environment", "of", "the", "Sierras,", "and", "I", "was", "just", "ready", "to", "be", "done.", "On", "the", "flip", "side,", "you’ll", "be", "treated", "to", "some", "wonderful", "trail", "towns.", "Idyllwild,", "Julian,", "Big", "Bear", "Lake,", "Wrightwood", "and", "Tehachapi", "were", "some", "of", "my", "favourites.", "Food", "carries", "are", "pretty", "light.", "Grocery", "stores", "are", "common", "and", "well", "stocked.", "Sunrise", "and", "sunset", "felt", "particularly", "magical", "in", "the", "desert.", "And", "you’re", "almost", "done!", "Cowboy", "Camping", "If", "you", "haven’t", "been", "cowboy", "camping", "yet,", "this", "is", "prime", "territory.", "I", "didn’t", "sleep", "a", "single", "night", "under", "a", "shelter", "after", "reaching", "South", "Kennedy", "Meadows.", "The", "chance", "of", "rain", "is", "going", "to", "be", "almost", "zero,", "but", "I", "wasn’t", "brave", "enough", "to", "send", "home", "my", "shelter.", "Insects,", "spiders", "and", "snakes", "are", "definitely", "a", "thing", "in", "the", "desert.", "If", "you", "can", "overcome", "the", "fear,", "I", "would", "recommend", "cowboy", "camping", "to", "everyone", "as", "a", "beautiful", "experience.", "Water", "There’s", "not", "a", "lot", "of", "it!", "Received", "wisdom", "tells", "us", "not", "to", "rely", "on", "water", "caches,", "but", "anecdotally", "most", "people", "would", "do", "just", "that.", "There", "just", "isn’t", "much", "choice", "available", "to", "hikers.", "Keep", "checking", "Guthook", "as", "to", "the", "status", "of", "caches.", "Has", "there", "been", "a", "recent", "comment", "confirming", "plentiful", "water?", "I", "would", "always", "carry", "more", "water", "than", "I", "needed", "in", "event", "that", "a", "cache", "was", "unexpectedly", "dry.", "I", "don’t", "think", "I", "ever", "carried", "more", "than", "3", "litres", "of", "water", "at", "any", "time.", "But", "I", "always", "kept", "6", "litres", "total", "carry", "capacity", "with", "a", "lightweight", "bladder", "just", "in", "case", "I", "needed", "it.", "Shrink’s", "General", "Tips", "These", "aren’t", "SOBO", "specific,", "but", "are", "just", "general", "things", "I", "picked", "up", "along", "the", "way.", "Fixed", "Schedules", "This", "is", "the", "cause", "of", "the", "so", "much", "stress", "on", "the", "trail:", "I’m", "meeting", "friend", "X", "on", "date", "Y", "at", "mile", "Z", "so", "we", "can", "hike", "together", "I", "need", "to", "be", "at", "town", "A", "by", "date", "B", "so", "I", "can", "go", "to", "a", "friend’s", "wedding", "in", "C", "I", "can’t", "stress", "enough", "how", "much", "pressure", "this", "can", "put", "you", "under!", "It’s", "not", "easy", "to", "plan", "to", "be", "at", "an", "exact", "place", "on", "an", "exact", "date.", "You’ll", "be", "stressing", "about", "it", "weeks", "beforehand.", "You", "might", "need", "to", "leave", "your", "trail", "family", "if", "you", "have", "one.", "You", "might", "feel", "pressured", "to", "make", "up", "crazy", "miles", "before", "or", "after.", "Resupply", "Shipping", "-", "PO", "vs", "Private", "Business", "In", "some", "towns", "you’ll", "have", "an", "option", "to", "ship", "to", "the", "Post", "Office,", "or", "ship", "to", "a", "private", "business", "(hotel,", "general", "store,", "trail", "angel", "etc.)", "for", "an", "additional", "fee.", "In", "almost", "all", "cases,", "I", "prefer", "to", "ship", "to", "a", "private", "business,", "purely", "to", "avoid", "arriving", "at", "the", "PO", "on", "a", "day", "where", "it", "is", "closed.", "POs", "are", "usually", "closed", "Sunday,", "and", "at", "least", "part", "of", "Saturday.", "Some", "of", "them", "close", "early", "on", "weekdays", "too.", "Taking", "a", "forced", "zero", "day,", "or", "doing", "a", "big", "sprint", "to", "the", "PO", "just", "to", "make", "it", "there", "on", "a", "weekday", "is", "not", "fun!", "It", "happened", "many", "times", "to", "many", "of", "us", "on", "the", "trail.", "If", "you", "have", "shipped", "to", "a", "PO", "start", "planning", "as", "far", "ahead", "as", "you", "can", "when", "you", "are", "going", "to", "arrive.", "If", "you", "know", "a", "week", "in", "advance", "that", "you’re", "gonna", "arrive", "on", "a", "weekend,", "you", "can", "start", "putting", "in", "extra", "miles", "gradually", "each", "day.", "Online", "Shopping", "-", "Delivery", "to", "the", "Trail", "It", "is", "hard", "to", "rely", "on", "good", "gear", "shops", "along", "the", "trail,", "except", "for", "large", "towns", "and", "the", "wonderful", "Triple", "Crown", "Outfitters", "in", "South", "Kennedy", "Meadows.", "UPDATE:", "I’ve", "since", "learned", "that", "Amazon", "only", "occasionally", "uses", "USPS,", "and", "sometimes", "uses", "other", "carriers.", "This", "surprised", "me", "because", "I", "was", "sure", "I", "and", "many", "others", "used", "Amazon", "to", "send", "General", "Delivery.", "We", "might", "have", "just", "got", "lucky.", "So", "I", "can’t", "really", "recommend", "using", "Amazon", "at", "this", "time", "to", "send", "directly", "to", "Post", "Offices.", "Try", "instead", "to", "find", "a", "private", "business", "to", "send", "to", "who", "will", "accept", "multiple", "delivery", "methods.", "If", "you", "don’t", "mind", "giving", "your", "money", "to", "billionaires,", "Amazon", "is", "very", "convenient.", "They", "ship", "USPS", "which", "means", "being", "able", "to", "send", "directly", "to", "the", "Post", "Office", "(with", "General", "Delivery).", "The", "Amazon", "website", "often", "complains", "about", "General", "Delivery", "addresses,", "but", "they", "always", "worked", "fine", "for", "me.", "The", "best", "solution", "I", "found", "is:" ], [ "1.", "Your", "Account", "2.", "Your", "Addresses", "3.", "Add", "New", "Address", "4.", "(Type", "the", "address", "in)", "5.", "Add", "Address", "6.", "(Amazon", "might", "say", "it", "doesn’t", "recognise", "the", "address)", "7.", "Click", "Add", "Address", "a", "second", "time", "8.", "It", "works!", "For", "other", "retailers", "-", "you’ll", "have", "to", "find", "out", "if", "they", "ship", "USPS", "or", "UPS.", "POs", "generally", "only", "accept", "UPS.", "Guthook", "will", "tell", "you", "which", "private", "businesses", "accept", "which", "delivery", "method.", "Misc.", "Resupply", "Tips", "Go", "to", "Trout", "Lake!", "It’s", "a", "cute", "town,", "great", "milkshakes,", "and", "splits", "up", "the", "150", "miles", "between", "White", "Pass", "and", "Cascade", "Locks.", "Portland", "is", "great,", "but", "you’ll", "spend", "much", "of", "your", "day", "trying", "to", "get", "around", "the", "city.", "Consider", "Hood", "River", "instead.", "It’s", "a", "fun", "town", "and", "easy", "enough", "to", "navigate.", "You", "can", "get", "there", "by", "bus", "from", "Cascade", "Locks.", "For", "shipping", "out", "boxes,", "private", "all-in-one", "stores", "like", "Postal", "Annex", "are", "super", "convenient:", "you", "can", "ship", "USPS,", "UPS", "and", "FEDEX", "from", "one", "place.", "Download", "all", "the", "apps", "(USPS,", "UPS,", "FEDEX)", "and", "always", "enter", "tracking", "numbers", "when", "you", "get", "them.", "Never", "put", "Tide", "Pods", "in", "your", "resupply", "boxes!", "They", "will", "make", "everything", "in", "your", "box", "taste", "of", "laundry", "detergent.", "For", "your", "boxes", "in", "WA,", "less", "is", "more!", "You", "won’t", "have", "hiker", "hunger", "yet.", "You", "can", "usually", "supplement", "with", "more", "food", "if", "you", "need", "it", "from", "stores.", "Hiker", "Boxes", "are", "notoriously", "full", "in", "WA.", "Make", "your", "WA", "boxes", "before", "you", "go.", "The", "rest", "can", "be", "made", "up", "while", "you’re", "on", "trail,", "from", "bigger", "towns", "(Hood", "River,", "Ashland,", "Mt", "Shasta,", "Tehachapi).", "Your", "OR", "and", "CA", "boxes", "will", "be", "far", "nicer", "and", "more", "attuned", "to", "your", "needs.", "Hitchhiking", "Most", "people", "starting", "the", "trail", "have", "had", "little", "to", "no", "experience", "hitchhiking.", "It", "doesn’t", "stay", "that", "way", "for", "long!", "On", "the", "PCT,", "hitchhiking", "is", "a", "requirement.", "But", "don’t", "fear!", "It", "seems", "scary,", "but", "you’ll", "get", "the", "confidence", "you", "need", "quickly,", "and", "soon", "you’ll", "be", "a", "well-oiled", "hitching", "machine!", "When", "I", "started", "out", "I", "was", "pretty", "nervous", "about", "the", "whole", "thing.", "Looking", "back,", "I", "realise", "that", "hitching", "might", "be", "one", "of", "my", "favourite", "experiences", "on", "trail.", "You", "meet", "wonderful", "people,", "get", "great", "stories,", "and", "witness", "the", "kindness", "of", "strangers", "first-hand.", "These", "tips", "are", "pretty", "generic,", "but", "I", "hope", "they", "are", "helpful:" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "it", "it", "it", "it", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Introduction", "What", "is", "this", "guide?", "There", "are", "tons", "of", "good", "resources", "online", "and", "in", "print", "about", "the", "PCT.", "In", "fact,", "much", "of", "what", "I’ve", "written", "here", "is", "probably", "available", "in", "some", "Reddit", "post", "or", "Blog", "entry", "somewhere.", "However,", "I", "honestly", "feel", "there’s", "a", "lack", "of", "decent", "SOBO-specific", "information", "that", "is", "collated", "into", "one", "resource.", "This", "is", "an", "attempt", "to", "do", "that.", "I’ve", "tried", "to", "keep", "it", "mostly", "about", "things", "that", "are", "unique", "to", "going", "SOBO", "(except", "the", "Shrink’s", "General", "Tips", "section).", "I", "would", "recommend", "reading", "this", "guide", "in", "addition", "to", "a", "more", "general-purpose", "resource", "out", "there:", "Also,", "please", "do", "check", "out", "these", "other", "really", "excellent", "SOBO", "resources:", "What", "this", "guide", "isn’t!", "This", "guide", "is", "not", "the", "final", "word", "on", "all", "things", "SOBO!", "Everyone", "has", "different", "experiences,", "each", "year", "is", "different,", "and", "the", "thru-hiking", "experience", "is", "extremely", "subjective.", "Take", "all", "of", "this", "with", "a", "grain", "of", "salt", "and", "a", "generous", "attitude.", "Take", "what", "is", "useful,", "leave", "what", "isn’t,", "and", "always", "remember", "-", "Hike", "Your", "Own", "Hike!", "About", "Shrink", "I’m", "a", "British-born", "hiker", "in", "my", "mid-thirties.", "I", "completed", "a", "full", "SOBO", "thru-hike,", "all", "2,653", "miles,", "in", "2019.", "I", "tagged", "the", "Northern", "Terminus", "on", "June", "29", "and", "reached", "the", "Southern", "Terminus", "in", "Campo", "on", "November", "4th,", "a", "total", "of", "129", "days.", "2019", "was", "a", "great", "year", "for", "us", "SOBOs:", "A", "low", "snow", "year", "in", "Washington", "Relatively", "good", "weather", "in", "the", "Sierras", "Few", "if", "any", "fire", "closures", "Thru-hiking", "has", "enriched", "my", "life", "in", "so", "many", "ways.", "It", "has", "been", "the", "journey", "of", "a", "lifetime.", "To", "those", "whom", "I", "walked", "with:", "it", "was", "an", "honour.", "Changes", "2/4/2020", "Sonora", "Pass", "Resupply", "company", "is", "closed", "1/10/2020", "Remove", "Amazon", "section", "12/30/2019", "Resort", "closures,", "Fearmongering,", "Bubble", "Pace", "12/9/2019", "Version", "1", "Why", "SOBO?", "I’m", "biased", "-", "I", "think", "the", "SOBO", "experience", "is", "incredible,", "and", "I", "want", "to", "shout", "it", "from", "the", "rooftops.", "NOBO", "Crowds", "In", "recent", "years", "the", "PCTA", "has", "released", "50", "permits", "per", "day", "throughout", "the", "the", "Northbound", "season.", "In", "2018,", "4,500", "Northbound", "thru-hike", "permits", "were", "issued.", "That", "is", "in", "contrast", "to", "491", "Southbound", "permits", "for", "the", "same", "year.", "The", "PCT", "going", "NOBO", "is", "crowded.", "The", "popularity", "of", "the", "trail", "has", "skyrocketed", "in", "the", "years", "since", "Wild", "was", "released", "in", "cinemas.", "Personally,", "this", "detracts", "from", "the", "experience", "I", "was", "searching", "for:", "adventure,", "independence,", "self", "sufficiency,", "connection", "with", "nature,", "peacefulness.", "This", "was", "the", "defining", "issue", "for", "me.", "I", "don’t", "want", "to", "be", "squeezing", "15", "people", "into", "a", "4-person", "tent", "site.", "I", "don’t", "want", "to", "be", "hurrying", "into", "town", "early", "to", "get", "the", "few", "remaining", "hotel", "rooms.", "I", "don’t", "want", "to", "be", "part", "of", "a", "herd.", "This", "is", "a", "personal", "preference,", "it’s", "not", "a", "value", "judgement", "on", "those", "who", "are", "looking", "for", "something", "different.", "Washington", "It’s", "a", "fact", "of", "the", "trail", "that", "many", "people", "choose", "to", "end", "their", "thru-hike", "within", "the", "first", "month.", "If", "that", "is", "the", "case", "for", "you,", "at", "least", "you", "will", "have", "experienced", "hiking", "through", "Washington,", "one", "of", "the", "most", "incredible", "portions", "of", "the", "trail.", "And", "the", "beauty", "begins", "right", "away", "-", "the", "first", "30", "miles", "from", "Harts", "Pass", "to", "the", "Northern", "Terminus", "consistently", "ranks", "as", "one", "of", "the", "most", "favourite", "trail", "sections.", "A", "cool", "Desert", "Going", "NOBO", "through", "the", "desert", "in", "April", "/", "May", "is", "a", "gruelling", "experience.", "You", "have", "to", "be", "prepared", "for", "100+", "degree", "days", "and", "often", "little", "shade.", "SOBOs", "will", "hike", "through", "the", "desert", "in", "October", "and", "November,", "when", "daytime", "temperatures", "are", "likely", "to", "stay", "in", "the", "70s", "and", "80s,", "with", "lows", "in", "the", "30s", "and", "40s", "at", "night.", "Snow-free", "Sierras", "Once", "you", "reach", "the", "Sierra", "Nevada", "in", "September,", "almost", "all", "of", "the", "settled", "snow", "will", "have", "melted.", "There", "won’t", "be", "any", "bugs.", "Passes", "should", "be", "easy.", "You’ll", "be", "in", "great", "physical", "shape", "and", "ready", "to", "knock", "out", "25+", "mile", "days.", "Urgency", "and", "its", "effects", "on", "Trail", "Culture", "Urgency", "is", "a", "huge", "component", "of", "a", "SOBO", "thru-hike.", "You", "must", "be", "through", "the", "Sierras", "before", "the", "winter", "snow", "sets", "in", "for", "the", "winter.", "A", "standard", "SOBO", "attempt", "might", "begin", "around", "July", "1.", "The", "received", "wisdom", "tells", "us", "that", "the", "Sierra", "snows", "will", "arrive", "somewhere", "near", "October", "15th.", "None", "of", "this", "is", "set", "in", "stone!", "But", "using", "this", "as", "a", "rough", "guide,", "a", "hiker", "will", "have", "approximately", "100", "days", "to", "go", "1,800", "miles", "to", "Forester", "Pass,", "after", "which", "they" ] ], [ [ "descend", "out", "of", "the", "Sierras", "into", "the", "desert.", "This", "goal", "is", "paramount", "and", "in", "the", "forefront", "of", "a", "SOBO", "hiker’s", "mind.", "I", "rarely", "met", "anyone", "who", "didn’t", "have", "at", "least", "some", "background", "anxiety", "about", "making", "it", "in", "time.", "The", "flavour", "of", "a", "SOBO", "hike", "is", "therefore", "characterised", "by:", "Few", "zeroes", "Big", "mile", "days", "Pressure", "to", "hit", "your", "stride", "early", "(be", "very", "wary", "of", "this!)", "Brief", "town", "stops", "I", "believe", "this", "produces", "a", "trail", "culture", "that", "is", "quite", "different", "to", "the", "NOBO", "experience.", "There", "is", "very", "little", "“party", "culture”.", "Sometimes", "you", "will", "find", "yourself", "rushing", "through", "experiences", "that", "you", "wished", "you", "had", "longer", "to", "take", "in", "and", "enjoy.", "Self", "discipline", "is", "important.", "You", "might", "feel", "guilty", "when", "you’re", "not", "walking", "(a", "feeling", "that", "stayed", "with", "me", "even", "after", "I", "finished", "the", "trail)!", "There", "are", "also", "real", "positives", "that", "come", "from", "being", "part", "of", "the", "SOBO", "community.", "Most", "people", "are", "there", "because", "of", "a", "specific", "reason", "to", "go", "South,", "not", "just", "by", "default.", "Anecdotally", "I", "would", "say", "the", "level", "of", "experience", "and", "preparedness", "is", "higher.", "I", "had", "a", "really", "great", "time", "meeting", "people", "that", "had", "a", "focus", "and", "drive", "that", "matched", "my", "own.", "I", "didn’t", "really", "see", "any", "large", "Trail", "Families.", "Most", "people", "I", "met", "were", "looking", "for", "some", "degree", "of", "solitude,", "which", "would", "allow", "them", "better", "to", "connect", "with", "the", "surrounding", "nature.", "Several", "times", "I", "ran", "into", "oncoming", "NOBOs", "who", "travelled", "in", "groups", "of", "8", "to", "12,", "which", "felt", "completely", "anathema", "as", "a", "SOBO.", "Many", "SOBO", "hikers", "I", "spoke", "to", "really", "valued", "their", "independence", "and", "didn’t", "want", "to", "compromise", "their", "drive", "to", "reach", "the", "Southern", "Terminus.", "If", "their", "group", "was", "walking", "too", "slow,", "it", "was", "time", "to", "push", "on", "ahead", "alone.", "You’ll", "always", "meet", "more", "hikers", "ahead", "of", "you.", "I", "don’t", "want", "to", "make", "a", "value", "judgement.", "Different", "experiences", "are", "right", "for", "different", "people.", "Make", "a", "conscious", "decision", "-", "what", "am", "I", "looking", "for", "from", "my", "thru-hike?", "This", "has", "been", "elaborated", "in", "far", "more", "detail", "at", "PCT", "Southbound.", "Go", "check", "it", "out.", "But", "briefly:", "If", "it’s", "your", "first", "time", "on", "trail,", "and", "you", "have", "little", "experience", "with", "alpine", "hiking", "in", "the", "snow,", "aim", "to", "start", "7", "days", "after", "the", "snow", "depth", "at", "Harts", "Pass", "hits", "zero.", "You", "can", "find", "current", "snow", "levels", "for", "Harts", "Pass", "here", "If", "you’re", "experienced", "with", "walking", "through", "snow,", "you", "may", "be", "able", "to", "start", "earlier.", "Just", "remember", "that", "the", "road", "up", "to", "Harts", "Pass", "may", "not", "be", "completely", "passable,", "requiring", "some", "extra", "miles", "of", "walking.", "Anywhere", "between", "July", "1", "and", "July", "7", "is", "a", "good", "bet", "2020", "Permitting", "Changes", "For", "the", "2020", "season,", "the", "PCTA", "has", "restricted", "the", "number", "of", "daily", "permits", "for", "SOBO", "to", "15.", "I", "believe", "they", "also", "want", "to", "make", "sure", "that", "people", "start", "on", "their", "permit", "date.", "When", "applying", "for", "your", "SOBO", "permit,", "you", "will", "have", "no", "idea", "what", "the", "snow", "conditions", "are", "going", "to", "be", "like", "for", "that", "season.", "It", "will", "be", "impossible", "to", "precisely", "predict", "when", "to", "start.", "I", "have", "some", "personal", "feelings", "about", "the", "strict", "rules", "regarding", "start", "dates", "for", "SOBO", "hikers.", "I", "don’t", "believe", "people", "should", "be", "risking", "their", "lives", "to", "start", "on", "their", "permit", "date", "if", "the", "snow", "conditions", "are", "worse", "than", "they", "are", "comfortable", "with.", "The", "Snow", "Deadline", "The", "Sierra", "snow", "deadline", "is", "the", "key", "date", "to", "keep", "in", "your", "mind:", "approximately", "October", "15.", "It’s", "impossible", "to", "know", "exactly", "when", "the", "snow", "is", "going", "to", "arrive", "each", "year.", "There", "will", "be", "early", "snows", "that", "may", "last", "a", "day", "or", "two,", "but", "don’t", "signal", "the", "end", "of", "the", "season.", "You", "don’t", "have", "to", "get", "all", "the", "way", "to", "South", "Kennedy", "Meadows", "by", "the", "time", "the", "snow", "settles", "in.", "You", "will", "want", "to", "have", "completed", "Forester", "Pass", "by", "that", "time.", "This", "gives", "you", "a", "few", "extra", "days", "to", "play", "with.", "Work", "your", "way", "back", "from", "that", "date.", "Give", "yourself", "2.5", "weeks", "to", "get", "from", "South", "Lake", "Tahoe", "to", "Forester", "Pass.", "That", "means", "finishing", "NorCal", "by", "around", "September", "25th", "Fearmongering", "Keep", "the", "snow", "deadline", "firmly", "in", "the", "front", "of", "your", "mind.", "Keep", "on", "top", "of", "the", "weather", "reports", "as", "you", "approach", "the", "high", "passes.", "Seek", "advice", "from", "others", "on", "the", "trail,", "particularly", "those", "coming", "North.", "Watch", "the", "InciWeb", "website", "for", "wildfires.", "But", "be", "aware", "there", "is", "always", "a", "strong", "current", "of", "fearmongering", "in", "the", "trail", "community!", "Every", "hiker", "is", "managing", "their", "own", "fears", "and", "doubt", "about", "making", "it", "all", "the", "way", "to", "Campo.", "I", "was", "personally", "told", "about", "difficult", "snow", "crossings", "that", "never", "materialised,", "and", "wildfires", "that", "never", "existed.", "When", "someone", "gives", "you", "a", "report", "of", "adverse", "trail", "conditions,", "ask", "them:", "“did", "you", "personally", "see", "/", "experience", "this?", "Or", "are", "you", "reporting", "the", "information", "second", "hand", "from", "someone", "else?”.", "Try", "and", "get", "different", "multiple", "independent", "sources", "for", "information.", "The", "best", "sources", "of", "information", "are" ] ], [ [ "Ranger", "Stations", "in", "the", "area.", "If", "you", "are", "concerned,", "call", "them", "and", "ask", "for", "a", "report", "of", "conditions", "on", "the", "ground.", "Bubble", "Pace", "People", "on", "trail", "talk", "about", "the", "“Bubble”:", "a", "large", "grouping", "of", "hikers,", "all", "within", "maybe", "1", "week", "of", "each", "other,", "who", "are", "setting", "the", "average", "pace.", "Those", "in", "front", "and", "behind", "the", "bubble,", "particularly", "going", "SOBO,", "might", "see", "fewer", "people", "and", "spend", "more", "time", "hiking", "and", "camping", "alone.", "In", "2019", "I", "hiked", "solidly", "inside", "the", "Bubble.", "I’d", "sometimes", "see", "20+", "people", "at", "major", "town", "stops.", "Here", "was", "my", "2019", "pace:", "Mile", "Stop", "Date", "0", "Northern", "Terminus", "6/29", "366", "White", "Pass", "7/22", "505", "Cascade", "Locks", "(End", "of", "WA)", "7/28", "755", "Shelter", "Cove", "8/10", "935", "Ashland", "(End", "of", "OR)", "8/18", "1344", "Chester", "(Halfway)", "9/05", "1563", "S.", "Lake", "Tahoe", "(End", "of", "NorCal)", "9/13", "1744", "Reds", "Meadow", "9/23", "1892", "Witney", "10/01", "1959", "S.", "Kennedy", "Meadows", "(End", "of", "Sierra)", "10/04", "2387", "Big", "Bear", "Lake", "10/23", "2653", "Campo", "(End", "of", "PCT)", "11/04", "Tracking", "Miles", "I", "created", "a", "Google", "Spreadsheet", "for", "tracking", "miles.", "It", "calculates:", "How", "many", "miles", "you’ve", "done", "each", "day", "Average", "Miles", "/", "Day", "Average", "Miles", "/", "Day", "(10", "day", "rolling", "average)", "Estimated", "finish", "date,", "based", "on", "Average", "Miles", "/", "Day", "Estimated", "finish", "date,", "based", "on", "Average", "Miles", "/", "Day", "(10", "day", "rolling", "average)", "Here", "is", "the", "spreadsheet", "Make", "a", "copy", "of", "the", "sheet", "to", "your", "account", "and", "start", "filling", "it", "in", "from", "the", "Northern", "Terminus", "Gear", "Philosophy", "I", "found", "two", "different", "approaches", "to", "how", "people", "selected", "gear", "for", "the", "trail:", "One", "continuous", "hike", "Five", "separate", "hikes", "One", "continuous", "hike", "You", "choose", "one", "set", "of", "equipment", "to", "carry", "from", "Canada", "to", "Mexico,", "through", "all", "environments,", "temperatures,", "and", "weather", "conditions.", "This", "comes", "with", "the", "clear", "benefit", "of", "simplicity", "-", "you", "don’t", "have", "to", "spend", "as", "much", "money", "and", "no", "swapping", "in", "and", "out", "is", "required.", "There’s", "rarely", "a", "chance", "you’ll", "be", "caught", "off-guard", "by", "conditions.", "One", "friend", "I", "hiked", "with", "on", "the", "trail", "described", "it", "as", "more", "“pure”", "experience.", "The", "obvious", "downside", "here", "is", "that", "for", "much", "of", "the", "trail", "you’ll", "be", "carrying", "things", "that", "are", "overkill", "for", "your", "environment.", "Having", "a", "heavy,", "warm,", "10", "degree", "F", "sleeping", "bag", "is", "largely", "unnecessary", "for", "the", "majority", "of", "Oregon", "and", "Northern", "California.", "A", "double", "wall", "shelter", "in", "the", "Desert", "is", "overkill", "when", "it", "barely", "rains", "and", "there", "are", "no", "nighttime", "bugs.", "On", "my", "thru-hike", "in", "2019,", "I", "didn’t", "set", "up", "my", "shelter", "once", "after", "Mount", "Whitney.", "That’s", "750", "miles", "carrying", "an", "item", "that", "could", "be", "switched", "out", "for", "something", "much", "lighter", "such", "as", "a", "tarp.", "Five", "separate", "hikes", "If", "you", "have", "the", "luxury", "of", "owning", "multiple", "pieces", "of", "gear", "that", "are", "suited", "to", "different", "seasons,", "my", "personal", "recommendation", "is", "treating", "the", "trip", "as", "though", "you", "were", "doing", "5", "separate", "hikes.", "Each", "portion", "(Washington,", "Oregon,", "NorCal,", "Sierra,", "SoCal)", "brings", "different", "weather", "conditions,", "bug", "intensity", "and", "temperature", "variations.", "Here", "is", "a", "breakdown", "of", "each", "section", "and", "some", "ideas", "of", "what", "gear", "might", "be", "swapped", "in", "or", "out:", "Section", "Conditions", "Thoughts", "Washington", "Wet,", "cold,", "buggy", "This", "is", "where", "you", "need", "most", "of", "your", "gear.", "Perhaps", "consider", "synthetic", "clothing", "over", "down,", "which", "will", "trap", "warmth", "better", "when", "wet", "Oregon", "Dry,", "warm,", "buggy", "Fewer", "layers,", "lighter", "sleeping", "bag", "and", "pad,", "lighter", "rain", "gear", "NorCal", "Dry,", "hot", "Even", "fewer", "layers", "and", "lighter", "bag", "and", "pad,", "long", "pants", "not", "necessary", "to", "repel", "bugs.", "Minimal", "sleeping", "clothes.", "This", "was", "my", "lightest", "pack", "weight", "Sierra", "Snow,", "very", "cold,", "no", "bugs", "Shelter", "without", "bug", "protection.", "Be", "ready", "for", "snow.", "Heavy", "bag", "and", "pad.", "Warm", "sleep", "layers!", "SoCal", "Dry,", "somewhat", "cold,", "no", "bugs", "Minimal", "shelter.", "Some", "warm", "layers", "This", "strategy", "requires", "thought,", "planning,", "additional", "expense", "(equipment", "costs", "and", "mailing", "fees),", "a", "small", "amount", "of", "additional", "risk", "of", "things", "not", "being", "there", "when", "you", "need,", "and", "a", "higher", "tolerance", "for", "weather", "variations.", "The", "upside", "is", "a", "much", "lower", "pack", "weight!", "If", "you’re", "planning", "on", "going", "ultralight,", "this", "strategy", "should", "be", "seriously", "considered.", "I", "think", "a", "common", "theme", "amongst", "hikers", "I", "met", "on", "the", "trail", "was", "thinking", "about", "what", "they", "were", "carrying", "and", "what", "they", "didn’t", "need.", "It’s", "a", "very", "gratifying", "feeling", "to", "know", "you", "are", "carrying", "only", "what", "you", "need,", "knowing", "what", "you", "can", "do", "without.", "It", "becomes", "a", "mindset,", "one", "that", "I’ve", "found", "useful", "back", "in", "regular", "life.", "None", "of", "this", "strictly", "requires", "pre-planning.", "You", "can", "decide", "to", "swap", "out", "or", "mail", "gear", "onwards", "while", "you", "are", "actually", "out", "there.", "This", "might", "be", "beneficial", "-", "you’ll", "get", "an", "idea", "of", "exactly", "what", "you", "need", "in", "your", "current", "section", "through", "experience" ] ], [ [ ",", "not", "guesswork.", "I", "would", "certainly", "recommend", "keeping", "a", "box", "of", "gear", "with", "the", "person", "who", "mails", "your", "boxes.", "This", "will", "be", "your", "alternative", "equipment", "you", "might", "need", "on", "the", "trail.", "Preparation", "Fitness", "The", "advice", "over", "at", "PCT", "Southbound", "is", "that", "fitness", "preparation", "should", "be", "your", "number", "one", "concern", "leading", "up", "to", "your", "hike.", "I", "mostly", "agree", "with", "this.", "The", "better", "shape", "you", "are", "in", "when", "starting", "at", "Harts", "Pass,", "the", "better", "experience", "you", "will", "have", "in", "the", "first", "month", "of", "your", "hike.", "However,", "training", "for", "long", "distance", "hiking", "isn’t", "particularly", "easy.", "There’s", "no", "substitute", "for", "actual", "hiking,", "which", "takes", "a", "lot", "of", "time.", "I", "found", "myself", "getting", "anxious", "about", "not", "having", "done", "enough", "training", "as", "my", "start", "date", "approached.", "Making", "time", "to", "train", "wasn’t", "easy", "when", "I", "had", "to", "move", "out", "of", "my", "apartment,", "put", "all", "my", "things", "in", "storage,", "hand", "over", "work", "at", "my", "job,", "and", "prepare", "my", "Washington", "resupply!", "I", "always", "felt", "behind", "in", "my", "preparation.", "I", "was", "sacrificing", "my", "mental", "wellbeing", "by", "putting", "extra", "pressure", "on", "myself.", "Take", "an", "honest", "look", "at", "your", "physical", "condition.", "Do", "you", "live", "an", "active", "life?", "Do", "you", "run", "/", "hike", "/", "lift", "/", "climb", "/", "play", "team", "sports?", "If", "you", "do,", "then", "I", "feel", "like", "you", "can", "make", "up", "any", "fitness", "gap", "on", "the", "trail", "itself,", "even", "in", "the", "tough", "Washington", "environment.", "Any", "extra", "preparation", "you", "do", "is", "a", "bonus.", "If", "you", "live", "an", "inactive", "life", "or", "find", "cardiovascular", "exercise", "difficult,", "then", "I", "think", "fitness", "preparation", "is", "incredibly", "important", "and", "should", "be", "your", "number", "one", "priority", "pre-trail.", "You’re", "going", "to", "be", "thrown", "into", "the", "deep", "end", "on", "a", "SOBO", "hike.", "Injury", "Management", "If", "you", "have", "any", "pre-existing", "injuries", "that", "you", "suspect", "may", "reoccur", "on", "the", "trail,", "this", "should", "be", "your", "primary", "concern.", "Injuries,", "particularly", "stress-related", "such", "as", "shin", "splints,", "plantar", "fasciitis,", "or", "anything", "achilles", "related,", "are", "hugely", "prevalent", "on", "the", "trail", "and", "commonly", "end", "people’s", "adventures", "barely", "after", "they", "started.", "The", "trail", "is", "going", "to", "beat", "your", "body", "into", "a", "pulp", "in", "the", "first", "month.", "It’s", "going", "to", "break", "down", "before", "it", "has", "time", "to", "adapt.", "Do", "whatever", "you", "can", "do", "ahead", "of", "time:", "specific", "exercises,", "stretching,", "PT,", "conditioning", "or", "whatever", "it", "is", "that", "works", "for", "you.", "Keeping", "Perspective", "My", "biggest", "day", "on", "trail", "was", "40", "miles.", "If", "you", "told", "me", "before", "hand", "that", "I", "would", "do", "a", "40", "mile", "day,", "I", "would", "have", "laughed", "at", "you.", "During", "preparation,", "I", "was", "stressed", "out", "at", "the", "idea", "of", "even", "doing", "25’s", "each", "day,", "a", "goal", "I", "knew", "I", "would", "need", "to", "hit", "in", "order", "to", "make", "it", "to", "the", "end.", "Please", "don’t", "stress!", "Your", "body", "will", "adapt.", "You", "will", "achieve", "things", "you", "never", "imagined", "possible.", "Your", "benchmarks", "of", "what", "you", "consider", "a", "“big", "day”", "will", "change.", "You’ll", "tap", "into", "a", "source", "of", "strength", "that", "perhaps", "you’ve", "never", "used", "before.", "This", "is", "one", "of", "the", "greatest", "rewards", "of", "the", "trail", "and", "it’s", "waiting", "for", "you!", "Mental", "Preparation", "Mental", "preparation", "is", "hugely", "underrated,", "and", "something", "I", "hadn’t", "considered", "much", "until", "I", "read", "the", "wonderful", "book", "Pacific", "Crest", "Trials.", "I", "think", "everyone", "approaches", "the", "hike", "with", "a", "different", "level", "of", "confidence.", "You", "might", "begin", "your", "trip", "feeling", "like", "you’re", "about", "to", "finally", "fulfil", "your", "destiny.", "That", "all", "your", "life", "decisions", "have", "led", "you", "to", "this", "wonderful", "adventure", "and", "it’s", "happening", "right", "now!", "This", "is", "your", "moment,", "your", "success", "is", "ordained", "and", "undeniable.", "On", "the", "other", "hand,", "you", "might", "be", "racked", "with", "nervousness", "and", "anxiety.", "Full", "of", "doubt.", "Can", "I", "make", "it?", "What", "the", "f**k", "was", "I", "thinking,", "this", "is", "insane!", "I", "can’t", "do", "this.", "I", "haven’t", "prepared", "enough.", "I’m", "foregoing", "comfort,", "friends,", "an", "easy", "life,", "certainty,", "routine,", "all", "to", "be", "out", "here.", "Likely", "you", "are", "somewhere", "between", "these", "two", "poles.", "It", "is", "my", "strong", "opinion", "that", "the", "closer", "you", "are", "to", "the", "former,", "the", "better", "your", "experience", "is", "going", "to", "be", "and", "the", "more", "chance", "you", "have", "at", "success.", "Dealing", "with", "anxiety", "is", "far", "from", "an", "easy", "thing.", "Each", "person", "needs", "to", "approach", "it", "differently.", "Is", "there", "something", "you", "can", "do", "to", "take", "the", "weight", "off", "your", "mind", "and", "aid", "your", "mental", "preparation", "for", "the", "trail?", "Thousands", "of", "people", "have", "come", "before", "you,", "successfully", "completed", "their", "hike,", "and", "want", "to", "channel", "this", "advice", "to", "you:", "it’s", "going", "to", "be", "great!", "You’re", "going", "to", "be", "fine.", "It’s", "going", "to", "work", "out,", "even", "if", "you", "might", "not", "see", "it", "yet.", "The", "first", "3", "weeks", "NOBOs", "have", "a", "big", "advantage", "at", "the", "start", "of", "their", "hike.", "They", "have", "no", "big", "deadline", "to", "hit", "yet", "and", "they", "start", "in", "some", "moderate", "terrain", "/", "elevation.", "SOBOs", "don’t", "have", "that", "luxury!", "SOBOs", "feel", "the", "pressure,", "and", "that", "can", "make", "us" ] ], [ [ "make", "poor", "decisions!", "I", "can’t", "stress", "this", "enough…", "Start", "slow!", "You", "may", "want", "to", "hit", "an", "overall", "walking", "average", "of", "25", "miles", "a", "day,", "but", "please", "don’t", "start", "at", "that", "pace!", "The", "first", "3", "weeks", "is", "when", "so", "many", "people", "suffer", "stress", "injuries", "from", "their", "body", "not", "being", "used", "to", "repeated", "hard", "days.", "And", "the", "days", "are", "hard", "in", "Washington.", "I", "got", "Shin", "Splints.", "So", "did", "many", "of", "my", "fellow", "hikers.", "A", "good", "friend", "was", "knocked", "off", "trail", "permanently", "due", "to", "Achilles", "issues", "that", "came", "on", "within", "the", "first", "300", "miles.", "Plantar", "Fasciitis", "is", "common.", "For", "me,", "I", "felt", "fit", "enough", "to", "do", "25s", "each", "day", "right", "out", "of", "the", "gate,", "but", "my", "body", "was", "not", "ready", "for", "it.", "This", "trip", "is", "long.", "You", "have", "a", "lot", "of", "time", "to", "make", "up", "the", "miles", "in", "Oregon", "and", "NorCal.", "Hitting", "30s", "and", "even", "40s", "in", "those", "states", "were", "not", "uncommon", "for", "me", "-", "my", "body", "had", "hardened", "into", "an", "unbeatable", "walking", "machine.", "Don’t", "get", "hurt", "while", "you’re", "still", "soft", "clay.", "Go", "easy", "on", "yourself", "The", "first", "few", "weeks", "are", "going", "to", "be", "incredibly", "visceral.", "A", "relentless", "tide", "of", "new", "people", "to", "meet,", "skills", "to", "learn,", "and", "limits", "to", "find.", "You", "might", "start", "doubting", "yourself,", "feeling", "homesick,", "wondering", "what", "the", "f**k", "you’re", "doing", "out", "here.", "Take", "it", "easy.", "Spend", "an", "extra", "day", "in", "town", "if", "you", "need", "it.", "Vocalise", "your", "thoughts;", "there’s", "a", "good", "chance", "others", "are", "feeling", "the", "same", "way.", "You’re", "not", "out", "there", "alone", "-", "there’s", "a", "community", "of", "people", "there", "to", "support", "you.", "The", "transition", "from", "regular", "life", "to", "trail", "life", "can", "be", "jarring", "at", "first.", "If", "you’re", "feeling", "out", "of", "your", "depth,", "give", "yourself", "at", "least", "3", "weeks", "before", "making", "the", "decision", "to", "leave", "the", "trail.", "Your", "brain", "might", "be", "screaming", "at", "you", "to", "trade", "in", "those", "trail", "runners", "for", "your", "old,", "comfortable", "life.", "Stick", "it", "out", "as", "long", "as", "you", "can!", "There’s", "no", "shame", "in", "quitting,", "but", "make", "sure", "you’ve", "given", "it", "a", "real", "chance", "first.", "Transport", "to", "Harts", "Pass", "Most", "SOBO", "thru-hikes", "begin", "at", "Harts", "Pass", "trailhead.", "It", "is", "also", "possible", "to", "start", "at", "Holman", "Pass,", "but", "far", "fewer", "people", "choose", "that", "option.", "The", "two", "clear", "options", "to", "get", "to", "Harts", "Pass", "are", "as", "follows:", "From", "Wenatchee,", "take", "public", "transport", "to..", "Winthrop,", "then", "hitch", "to", "the", "trailhead", "Twisp,", "then", "hire", "the", "Classic", "Mountain", "Cabbie", "(private", "taxi)", "to", "drive", "to", "the", "trailhead", "From", "Seattle,", "have", "someone", "drive", "you", "(or", "hitch)", "to", "Harts", "Pass", "I", "would", "recommend", "checking", "out", "the", "PCTA", "page", "for", "Getting", "to", "the", "Northern", "Terminus.", "I", "would", "personally", "recommend", "getting", "to", "Wenatchee", "and", "taking", "public", "transport", "to", "Winthrop.", "It", "is", "easy", "and", "convenient,", "and", "you’re", "likely", "to", "meet", "a", "bunch", "of", "SOBOs", "on", "the", "bus!", "The", "hitch", "to", "Harts", "Pass", "is", "pretty", "easy", "if", "the", "snow", "has", "completely", "melted", "at", "the", "trailhead.", "Your", "steps", "are:", "Wenatchee", "to", "Pateros.", "You", "can", "buy", "a", "ticket", "at", "the", "counter", "or", "online.", "If", "you", "purchase", "online", "make", "sure", "you", "PRINT", "your", "ticket", "(not", "mobile", "phone)!", "Pateros", "to", "Twisp", "(purchase", "on", "the", "bus)", "Twisp", "to", "Winthrop", "(purchase", "on", "the", "bus)", "To", "get", "to", "Wenatchee", "from", "Seattle,", "either:", "Fly", "(Alaska", "Airways).", "For", "me,", "the", "cost", "wasn’t", "that", "much", "more", "to", "go", "to", "Wenatchee", "than", "to", "Seattle.", "Take", "the", "bus", "(Wenatchee", "Valley", "Shuttle)", "If", "you’re", "like", "me,", "you", "might", "find", "the", "idea", "of", "trying", "to", "hitch", "to", "Harts", "Pass", "a", "bit", "daunting.", "I", "had", "no", "hitching", "experience", "at", "that", "point.", "Overwhelmingly", "the", "feedback", "I", "got", "was", "that", "getting", "a", "hitch", "was", "easy", "and", "fast.", "Resupply", "Resupply", "Spreadsheets", "I’m", "not", "going", "to", "duplicate", "what", "is", "already", "out", "there.", "There", "are", "some", "wonderful", "resupply", "guides", "for", "SOBO", "in", "spreadsheet", "form.", "Make", "a", "copy", "of", "them", "into", "your", "account.", "Choose", "one", "that", "works", "well", "for", "you.", "The", "Sierra", "Resupply", "Guide", "As", "I", "approached", "the", "end", "of", "NorCal,", "I", "found", "myself", "unprepared", "for", "how", "to", "get", "through", "the", "Sierra.", "I", "hadn’t", "really", "given", "much", "thought", "about", "resupply", "because", "up", "until", "then", "it", "was", "pretty", "easy", "-", "I", "could", "do", "much", "of", "it", "on", "trail,", "there", "were", "plenty", "of", "trail", "towns", "to", "choose", "from,", "and", "no", "passes", "to", "exit", "from.", "The", "Sierra", "is", "a", "section", "worth", "taking", "time", "to", "plan", "for", "ahead", "of", "time!", "Even", "if", "you", "don’t", "want", "to", "commit", "on", "one", "strategy", "right", "away,", "know", "your", "options.", "Overview", "Here", "are", "the", "prominent", "resupply", "points", "through", "the", "Sierra:", "Mile", "On-Trail", "Off-Trail", "Comment", "1636", "-", "N." ] ], [ [ "Kennedy", "Meadows", "Good", "store", "+", "Mail.", "Tricky", "hitch", "1710", "Tuolumne", "Meadows", "-", "Poor", "store", "selection", "1746", "Red’s", "Meadow", "Mammoth", "Lakes", "Easy", "hitch", "out", "to", "Mammoth.", "Poor", "store", "selection", "at", "Red’s", "1774", "-", "Vermillion", "Valley", "Resort", "A", "quick", "boat", "ride", "or", "side", "trail.", "See", "“The", "Resorts”", "section", "1795", "Muir", "Trail", "Ranch", "-", "Pretty", "much", "on", "trail.", "See", "“The", "Resorts”", "section", "1846", "-", "Independence", "or", "Bishop", "via", "Kearsarge", "Pass", "See", "“Exit", "Points”", "section", "1907", "-", "Lone", "Pine", "via", "Trail", "Pass", "1950", "S.", "Kennedy", "Meadows", "-", "1", "mile", "road", "walk", "Exit", "Points", "The", "Sierra", "is", "unique", "in", "that", "the", "trail", "does", "not", "cross", "many", "town-accessible", "roads,", "particularly", "between", "Red’s", "Meadow", "and", "South", "Kennedy", "Meadows.", "This", "means", "that", "any", "resupply", "must", "be", "done", "on-trail", "at", "one", "of", "the", "resorts", "(VVR", "or", "MTR),", "or", "by", "“exiting”", "using", "a", "trail", "that", "intersects", "the", "PCT.", "The", "two", "commonly-used", "exit", "points", "are", "Kearsarge", "Pass", "(7.5", "miles)", "and", "Bishop", "Pass", "(12", "miles).", "Both", "are", "hard", "work", "-", "you", "can", "treat", "both", "of", "them", "as", "normal", "“pass”", "attempts", "in", "the", "Sierras,", "such", "as", "Muir", "or", "Forester", "Pass.", "They", "involve", "a", "steep", "climb", "up", "to", "a", "high", "peak", "(>", "11,000", "ft),", "then", "long", "descent", "to", "a", "trailhead.", "These", "passes", "will", "drop", "you", "off", "at", "a", "trailhead", "parking", "lot.", "I", "didn’t", "hear", "of", "anyone", "having", "any", "issues", "getting", "a", "hitch,", "but", "be", "prepared", "to", "wait", "multiple", "hours", "or", "even", "overnight", "if", "you", "get", "there", "at", "a", "bad", "time.", "Hitches", "to", "Bishop", "from", "Kearsarge", "trailhead", "might", "involve", "a", "transfer", "in", "Independence", "and", "a", "40", "minute", "ride.", "And", "you", "have", "to", "get", "back", "and", "do", "it", "all", "again.", "All", "this", "makes", "the", "Bishop", "exit", "easily", "a", "2-day", "affair.", "The", "Resorts", "-", "convenient,", "but", "expensive", "There", "are", "two", "mountain", "resorts", "located", "pretty", "much", "on-trail:", "Vermillion", "Valley", "Resort", "(VVR)", "and", "Muir", "Trail", "Ranch", "(MTR).", "Both", "are", "essentially", "mail-resupply", "only.", "They", "are", "very", "convenient!", "But", "you", "must", "prep", "these", "resupplies", "ahead", "of", "time", "if", "you", "want", "to", "use", "them.", "Furthermore,", "they", "are", "expensive!", "For", "VVR,", "at", "the", "time", "of", "writing", "(2020", "season)", "according", "to", "the", "website:", "The", "fee", "for", "Packages", "scheduled", "for", "a", "May", "pick", "up", "is", "$50.00", "or", "after", "September", "15th", "-", "thru", "October", "Pick-Up", "is", "$50.00", "You’ll", "be", "charged", "extra", "if", "the", "package", "weighs", ">", "25", "lbs.", "Furthermore:", "VVR", "at", "Edison", "Lake", "is", "approximately", "two", "hours", "from", "the", "nearest", "U.S.", "Post", "Office", "or", "the", "U.P.S.", "drop", "point.", "Because", "of", "this", "we", "only", "pickup", "packages", "once", "or", "twice", "a", "week.", "Keep", "this", "in", "mind", "when", "planning", "your", "package", "arrival", "date.", "Please", "be", "sure", "that", "you", "send", "your", "package", "to", "arrive", "10-14", "days", "before", "YOU", "arrive!", "MTR", "is", "even", "more", "expensive:", "The", "service", "fee", "is", "US$85.00", "for", "up", "to", "25", "pounds.", "(Buckets", "weighing", "over", "25", "pounds", "will", "be", "charged", "US$2.00", "per", "pound", "overage", "fee.)", "..", "and", "must", "be", "mailed", "in", "a", "waterproof", "plastic", "bucket", "found", "at", "a", "hardware", "store.", "Resort", "Closures", "Both", "resorts", "will", "close", "their", "doors", "for", "resupply", "packages", "at", "some", "point", "during", "the", "SOBO", "season.", "Unfortunately,", "this", "is", "usually", "before", "every", "hiker", "has", "past", "through.", "Hikers", "who", "are", "moving", "slower", "than", "the", "main", "“bubble”", "risk", "not", "being", "able", "to", "pick", "up", "their", "resupply.", "If", "you", "choose", "to", "use", "the", "resorts,", "keep", "checking", "the", "resort", "websites", "-", "they", "will", "tell", "you", "the", "closing", "date.", "However,", "there’s", "no", "guarantee", "that", "this", "date", "will", "be", "honoured!", "The", "resorts", "may", "close", "several", "days", "before", "the", "date", "on", "the", "website.", "Estimate", "your", "arrival", "date", "for", "the", "resort", "you’re", "going", "to", "use.", "If", "you", "are", "within", "4", "days", "of", "when", "that", "resort", "is", "due", "to", "close,", "consider", "not", "using", "it.", "Get", "as", "much", "info", "as", "you", "can", "as", "you", "approach.", "Call", "the", "resort", "directly,", "on", "the", "phone.", "Speak", "to", "hikers", "going", "NOBO.", "If", "you", "are", "unsure", "as", "you", "approach,", "bring", "enough", "food", "to", "reach", "Bishop!", "Never", "risk", "running", "out", "of", "food", "in", "the", "Sierras!", "Carry", "Capacity", "Many", "people", "who", "use", "one", "of", "the", "resorts", "above", "will", "do", "so", "to", "avoid", "exiting", "the", "trail", "using", "one", "of", "the", "passes.", "This", "will", "put", "you", "in", "for", "a", "long", "food", "carry!", "Muir", "Trail", "Ranch", "->", "South", "Kennedy", "Meadows:", "155", "miles", "Vermillion", "Valley", "Resort", "->", "South", "Kennedy", "Meadows:", "176", "miles", "Red’s", "Meadow", "Resort", "->", "South", "Kennedy", "Meadows:", "204", "miles", "Certainly", "not", "impossible", "(I", "would", "guess", "that", "~20%", "of", "people", "went", "for", "this", "option).", "This", "section", "of", "trail", "is", "both", "very", "difficult", "on", "the", "body,", "and", "extremely", "beautiful,", "so", "you", "may", "not" ] ], [ [ "be", "doing", "30", "mile", "days.", "Staying", "on", "vs", "Getting", "off", "A", "single,", "clean", "push", "through", "the", "high", "Sierra", "without", "exiting", "is", "a", "wonderful", "experience.", "It", "saves", "you", "a", "lot", "of", "time", "and", "keeps", "you", "in", "the", "mountains.", "If", "you", "have", "your", "resupply", "sorted", "there", "are", "fewer", "things", "to", "worry", "about", "when", "you’re", "out", "there", "hiking.", "For", "me", "personally,", "leaving", "the", "trail", "and", "taking", "a", "zero", "day", "in", "Bishop", "was", "exactly", "what", "my", "mind", "and", "body", "needed.", "This", "section", "is", "long,", "tiring,", "breathtaking,", "and", "the", "weather", "can", "be", "highly", "variable.", "I", "got", "out,", "enjoyed", "a", "hot", "shower", "and", "bed,", "purchased", "an", "extra", "layer", "of", "clothing,", "and", "relaxed.", "It’s", "a", "personal", "choice", "-", "do", "what", "is", "right", "for", "you.", "Even", "if", "you", "planned", "to", "do", "a", "single", "push,", "always", "know", "you", "can", "bail", "if", "you", "need", "a", "break", "or", "the", "weather", "turns", "ugly.", "Saving", "some", "time", "at", "North", "Kennedy", "Meadows", "The", "default", "option", "seems", "to", "be", "to", "hitch", "into", "North", "Kennedy", "meadows,", "resupply,", "pick", "up", "a", "bear", "box,", "and", "enjoy", "their", "wood-burning", "stove!", "UPDATE:", "It", "appears", "Sonora", "Pass", "Resupply", "company", "will", "be", "closed", "for", "2020,", "and", "perhaps", "beyond.", "The", "hitch", "can", "be", "a", "bit", "gnarly.", "A", "few", "hikers", "this", "year", "paid", "for", "Sonora", "Pass", "Resupply,", "a", "company", "that", "will", "deliver", "a", "full", "resupply", "(and", "bear", "box)", "direct", "to", "the", "trailhead.", "Plan", "it", "ahead", "of", "time", "and", "expect", "to", "pay", "an", "overhead.", "Example", "Strategies", "The", "Default", "Pre-planning:", "none", "Time:", "consuming", "Cost", "overhead:", "none", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Hitch", "Box", "109", "Mammoth", "Lakes", "Hitch", "Grocery", "Store", "118", "+", "7.5", "side", "trail", "@", "Kearsarge", "Bishop", "Hitch", "Grocery", "Store", "86", "Requires", "zero", "ahead-of-time", "planning,", "so", "very", "popular.", "Adds", "normally", "another", "2-3", "days", "onto", "your", "hike.", "No", "long", "carries.", "You", "get", "to", "experience", "the", "great", "towns", "of", "Mammoth", "Lakes", "and", "Bishop.", "Variation:", "send", "a", "box", "to", "Red’s", "Meadow", "instead", "of", "hitching", "to", "Mammoth", "Lakes", "The", "Single", "Push", "Pre-planning:", "a", "lot", "Time:", "speedy", "Cost", "overhead:", "a", "lot", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Sonora", "Pass", "Resupply", "on-trail", "Mail", "order", "items", "109", "Red’s", "Meadow", "On-trail", "Box", "50", "MTR", "On-trail", "Box", "155", "Variation:", "send", "a", "box", "to", "Tuolumne", "Meadows", "instead", "of", "Red’s", "meadow.", "It", "spaces", "out", "the", "resupply", "stops", "better,", "however", "TM", "post", "office", "is", "closed", "for", "much", "of", "the", "weekend,", "and", "I", "know", "a", "bunch", "of", "people", "who", "got", "caught", "out", "by", "this!", "The", "Roll-the-Dice", "Pre-planning:", "not", "much", "Time:", "Depends", "on", "if", "you", "pull", "it", "off", "Cost", "overhead:", "none", "It", "is", "common", "knowledge", "that", "MTR", "has", "amazing", "hiker", "boxes,", "full", "of", "food", "that", "JMT", "hikers", "have", "overpacked", "for", "their", "trip!", "I’ve", "heard", "of", "cornucopias", "of", "Mountain", "House", "meals", "ready", "to", "be", "packed", "out.", "On", "the", "other", "hand,", "when", "I", "got", "there", "late", "September", "there", "was", "nothing!", "So", "here’s", "the", "plan:", "pack", "enough", "food", "out", "of", "Red’s", "to", "make", "it", "to", "Bishop", "(which", "is", "your", "backup", "plan).", "If", "you", "get", "to", "MTR", "and", "can", "resupply", "out", "of", "the", "hiker", "boxes,", "do", "it", "and", "push", "through", "to", "South", "Kennedy", "Meadows.", "Otherwise", "you’ll", "have", "to", "exit", "to", "Bishop.", "Location", "On", "/", "Off", "Trail", "Type", "Miles", "to", "Next", "Resupply", "North", "Kennedy", "Sonora", "Pass", "Resupply", "on-trail", "Mail", "order", "items", "109", "Red’s", "Meadow", "On-trail", "Box", "50", "or", "118", "if", "the", "trick", "doesn’t", "work!!", "MTR", "On-trail", "Hiker", "boxes", "(!!!)", "155", "This", "is", "a", "good", "strategy", "if", "you", "think", "you", "might", "want", "to", "make", "the", "single", "push,", "but", "don’t", "want", "to", "plan", "or", "pay", "for", "it.", "YMMV!", "What", "to", "Expect", "Keep", "these", "two", "pages", "bookmarked", "on", "your", "phone:", "PCTA", "Weather", "-", "direct", "links", "to", "NOAA", "weather", "forecasts", "at", "~50", "mile", "increments", "Inciweb", "Wildfire", "Updates", "-", "up-to-date", "reports", "of", "all", "active", "wildfires", "in", "the", "US", "Washington", "Daytime", "Temperatures:", "Warm", "Nighttime", "Temperatures:", "Cold", "Snow", "on", "ground:", "Yes!", "Micro", "spikes", "&", "Ice", "Axe", "might", "be", "required", "Snow", "from", "sky:", "No", "Rain:", "Very", "much", "yes!", "Bugs:", "Yes,", "awful!", "Many", "mosquitos", "from", "Stevens", "Pass", "onwards", "Elevation", "change:", "Very", "large", "Water:", "Abundant", "Difficulty:", "Hard", "Washington", "is", "going", "to", "test", "you", "physically", "and", "mentally,", "not", "least", "due", "to", "the", "weather", "and", "conditions.", "This", "state", "will", "throw", "at", "you", "the", "largest", "variety", "of" ] ], [ [ "conditions", "you", "will", "probably", "experience", "on", "trail.", "Elevation", "gain", "and", "loss", "is", "greater", "here", "than", "any", "other", "part", "trail.", "Blowdowns", "and", "bushes", "that", "haven’t", "been", "cut", "back", "yet", "will", "slow", "you", "down.", "Washington", "is", "remote", "and", "it", "really", "feels", "that", "way.", "Long", "carries", "between", "towns", "are", "the", "norm", "(although,", "the", "addition", "of", "the", "Trout", "Lake", "shuttle", "service", "does", "provide", "relief).", "Cellphone", "service", "is", "almost", "non-existent", "in", "the", "Wildernesses.", "However,", "Washington", "blew", "me", "away", "with", "its", "beauty,", "ruggedness,", "magical", "pine", "forests,", "and", "alpine", "lakes.", "Over", "and", "again", "the", "North", "Cascades", "and", "Glacier", "peak", "top", "people’s", "lists", "of", "favourite", "section", "of", "the", "trail.", "Goat", "Rocks", "will", "take", "your", "breath", "away.", "The", "wildflowers", "of", "Mount", "Adams", "Wilderness", "particularly", "stick", "in", "my", "mind.", "Snow", "Most", "relevant", "is", "the", "snow", "on", "the", "ground.", "Depending", "on", "your", "start", "date,", "you", "might", "require", "micro", "spikes", "and", "even", "ice", "axe", "for", "the", "first", "3", "weeks", "of", "your", "trip.", "The", "conventional", "wisdom", "is", "to", "choose", "a", "start", "date", "at", "least", "7", "days", "after", "the", "snow", "level", "at", "Harts", "Pass", "hits", "zero.", "Any", "sooner", "and", "snow", "traversal", "will", "slow", "you", "down", "if", "you", "don’t", "have", "adequate", "experience.", "I", "found", "it", "hard", "to", "get", "good", "information", "about", "particular", "passes", "and", "sections", "-", "did", "we", "need", "the", "axe?", "Did", "we", "need", "the", "spikes?", "I", "would", "always", "recommend", "carrying", "spikes", "for", "the", "first", "3", "weeks.", "While", "at", "Harts", "Pass,", "ask", "people", "coming", "back", "from", "tagging", "the", "border", "about", "the", "snow", "conditions.", "You", "can", "leave", "unneeded", "equipment", "at", "the", "Harts", "Pass", "ranger", "station,", "and", "pick", "it", "up", "on", "your", "return.", "Check", "Guthook", "comments", "for", "Rock", "Pass", "(mile", "13.6)", "Fire", "Creek", "Pass", "(mile", "133.1)", "Rain", "Don’t", "be", "surprised", "if", "it", "rains", "every", "day", "from", "Harts", "Pass", "through", "to", "White", "Pass", "(the", "first", "3", "weeks).", "You", "might", "slog", "it", "4,000", "ft", "uphill,", "only", "to", "curse", "the", "persistent", "clouds", "and", "fog", "that", "can", "obscure", "any", "amazing", "views", "that", "would", "have", "made", "the", "payoff", "worthwhile.", "Stopping", "to", "dry", "out", "tents,", "clothing", "and", "sleeping", "bags", "will", "be", "an", "almost", "daily", "occurrence.", "Bugs", "Horrendous!", "Especially", "after", "the", "first", "week.", "Some", "of", "my", "lowest", "days", "on", "trail", "were", "due", "to", "bugs.", "You", "can", "barely", "take", "a", "5", "minute", "rest", "before", "you", "are", "consumed", "by", "a", "cloud", "of", "flying", "monsters.", "Get", "used", "to", "setting", "up", "your", "tent", "in", "record", "time,", "quickly", "leaping", "through", "the", "door,", "and", "spending", "the", "next", "5", "minutes", "squishing", "all", "the", "mosquitos", "that", "got", "inside.", "Bring", "a", "bug", "head-net", "Bring", "long", "wind", "or", "rain", "pants,", "or", "even", "bug-net", "pants", "Bring", "gloves", "Bring", "DEET", "Don’t", "let", "them", "get", "you", "down", "-", "they", "ease", "up", "in", "Oregon,", "and", "disappear", "in", "NorCal", "Oregon", "Daytime", "Temperatures:", "Hot", "Nighttime", "Temperatures:", "Warm", "Snow", "on", "ground:", "Almost", "none", "Snow", "from", "sky:", "No", "Rain:", "Little,", "but", "be", "prepared", "for", "a", "storm", "or", "two", "Bugs:", "Quite", "bad", "at", "the", "start,", "easing", "off", "towards", "the", "end", "Elevation", "change:", "Small", "-", "the", "flattest", "section", "of", "trail", "Water:", "Mostly", "good,", "but", "a", "couple", "of", "20-mile", "carries", "come", "to", "mind", "around", "Big", "Lake", "Difficulty:", "Easy", "Oregon", "is", "a", "welcomed", "respite", "after", "a", "difficult", "and", "draining", "Washington", "section.", "In", "some", "ways,", "it", "is", "nearly", "the", "polar", "opposite", "to", "Washington:", "very", "flat,", "towns", "/", "resorts", "every", "couple", "of", "days,", "and", "mild", "weather.", "Northern", "Oregon", "is", "incredibly", "scenic,", "particularly", "around", "Mount", "Jefferson", "and", "the", "Three", "Sisters", "Wilderness.", "You", "may", "be", "able", "to", "push", "some", "big-mile", "days", "here", "too,", "making", "up", "for", "a", "more", "cautious", "start", "through", "WA.", "Swapping", "Gear", "This", "might", "be", "the", "time", "to", "start", "considering", "switching", "out", "your", "cold-weather", "gear", "for", "lighter", "warm-weather", "options.", "Or", "at", "the", "very", "least", "mailing", "some", "unnecessary", "layers", "forward", "to", "Sierra", "City.", "The", "weather", "for", "the", "next", "800", "miles", "is", "going", "to", "be", "much", "warmer.", "Think", "about", "mailing", "out:", "Fleece", "or", "puffy", "(you", "only", "need", "one)", "Rain", "pants", "(unless", "this", "is", "your", "bug", "protection", "for", "your", "legs)", "Long", "sleeping", "underwear", "bottoms", "Long", "sleeve", "sleeping", "top", "(can", "be", "switched", "for", "t-shirt", "or", "something", "light)", "Gloves,", "woolly", "hat,", "balaclava", "Additionally,", "maybe", "switching", "out:", "A", "heavy", "sleeping", "bag", "for", "something", "in", "the", "30", "-", "40", "degree", "F", "range", "A", "heavy", "pad", "for", "a", "short", "pad", "You", "can", "potentially", "strip", "2", "-", "4", "lbs", "from", "your", "base", "weight", "if", "you’re", "ruthless", "about", "it.", "Northern", "California", "Daytime", "Temperatures:", "Very", "Hot", "Nighttime", "Temperatures:", "Warm", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "No", "Rain:", "Little", "Bugs:", "No", "mosquitos.", "Occasional", "gnats", "(around", "Dunsmuir", "/", "Mount", "Shasta)", "can", "be", "annoying", "Elevation", "change:", "Moderate", "to", "High", "Water" ] ], [ [ ":", "Less", "good.", "More", "water", "carries,", "especially", "in", "the", "first", "300", "miles.", "Difficulty:", "Hard", "Northern", "California", "ratchets", "up", "the", "difficulty", "once", "again.", "Elevation", "change", "is", "fairly", "high,", "but", "the", "first", "thing", "to", "expect", "when", "crossing", "the", "state", "line", "into", "California", "is", "scorching", "heat", "and", "exposed", "sections", "of", "trail", "with", "little", "shade.", "Aside", "from", "the", "ever-present", "view", "of", "Mount", "Shasta", "(the", "mountain", "not", "the", "town),", "the", "scenery", "isn’t", "quite", "as", "good", "as", "you’ve", "had", "it", "so", "far.", "The", "descent", "into", "Seiad", "Valley,", "long", "road", "walk,", "and", "brutal", "climb", "is", "particularly", "testing.", "After", "Belden", "however,", "the", "surroundings", "take", "on", "a", "decidedly", "more", "“Sierra”", "vibe.", "The", "weather", "cools", "and", "you’re", "treated", "to", "some", "great", "vistas", "as", "you", "approach", "Sierra", "City", "and", "Lake", "Tahoe.", "This", "was", "where", "I", "personally", "felt", "at", "my", "physical", "peak", "-", "I", "was", "hitting", "30+", "mile", "days", "consistently", "while", "getting", "excited", "at", "the", "prospect", "of", "the", "approaching", "Sierra", "Nevada", "mountains.", "NorCal-Sierra", "Boundary", "Guthook", "tells", "us", "the", "Sierra", "starts", "at", "South", "Lake", "Tahoe.", "I", "would", "strongly", "consider", "treating", "Sierra", "City", "as", "the", "starting", "point.", "After", "this,", "the", "weather", "cools", "dramatically", "especially", "at", "night.", "I", "wished", "I", "had", "mailed", "my", "cold-weather", "clothes", "to", "Sierra", "City,", "when", "I", "was", "freezing", "my", "butt", "off", "at", "night", "in", "the", "Desolation", "Wilderness.", "The", "Sierras", "Daytime", "Temperatures:", "Warm", "Nighttime", "Temperatures:", "Very", "Cold!", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "Yes", "Rain:", "More", "likely", "to", "be", "snow", "than", "rain", "Bugs:", "No", "Elevation", "change:", "High", "Water:", "Great", "-", "water", "everywhere", "Difficulty:", "Hard", "This", "is", "what", "you’ve", "been", "waiting", "for!", "The", "Sierras", "are", "like", "nothing", "else,", "so", "take", "it", "all", "in", "and", "enjoy.", "You’re", "gonna", "be", "working", "hard", "every", "day", "-", "big", "climbs", "over", "the", "various", "tall", "passes", "(Muir,", "Mather,", "Pinchot,", "Glen,", "and", "Forester)", "will", "really", "take", "it", "out", "of", "you,", "and", "put", "to", "the", "test", "all", "that", "preparation", "you’ve", "done", "over", "the", "last", "2", "months.", "Cold", "You’re", "gonna", "be", "grateful", "to", "have", "all", "your", "cold", "weather", "gear", "back,", "and", "might", "even", "want", "to", "consider", "packing", "out", "some", "extra", "just", "for", "this", "section.", "Temperatures", "at", "night", "can", "drop", "below", "15F.", "If", "you", "don’t", "feel", "comfortable", "that", "your", "sleeping", "bag", "and", "pad", "are", "up", "to", "the", "challenge,", "you", "can", "make", "up", "for", "it", "with", "more", "clothes.", "Everyone", "I", "hiked", "with", "said", "they", "slept", "in", "every", "single", "layer", "for", "at", "least", "one", "of", "the", "nights.", "Campsite", "selection", "is", "important.", "Choosing", "a", "site", "near", "the", "top", "of", "a", "pass", "might", "seem", "tempting", "but", "you’re", "likely", "in", "for", "a", "windy", "night.", "Similarly,", "cold", "air", "will", "settle", "at", "the", "very", "bottom", "of", "a", "valley", "or", "by", "a", "flowing", "stream.", "My", "coldest", "night", "was", "at", "Matterhorn", "Creek", "(mile", "1,691)", "because", "of", "poor", "campsite", "selection", "-", "I", "didn’t", "sleep", "a", "wink", ":(", "Blizzards", "Snow", "in", "the", "Sierras", "can", "be", "dangerous,", "especially", "because", "of", "the", "lack", "of", "options", "to", "bail", "to", "a", "nearby", "town.", "Keeping", "up-to-date", "weather", "forecasts", "can", "be", "really", "helpful", "(accepting", "that", "mountain", "forecasting", "can", "be", "a", "real", "crapshoot).", "Muir", "Trail", "Ranch,", "Tuolumne", "Meadows", "and", "I", "believe", "Vermillion", "Valley", "Resort", "will", "keep", "forecasts", "updated", "for", "hikers.", "Many", "emergency", "satellite", "devices", "have", "a", "weather", "forecast", "function.", "Plan", "where", "you", "can", "bail", "if", "things", "turn", "sour,", "and", "don’t", "be", "afraid", "to", "take", "an", "earlier", "pass", "if", "you", "need", "it.", "Altitude", "Effects", "Being", "up", "between", "10,000", "and", "13,000", "ft", "has", "a", "significant", "effect", "on", "the", "body.", "Even", "if", "you", "don’t", "get", "sick,", "you’re", "likely", "to", "be", "slow", "and", "tired", "every", "day", "until", "you", "are", "fully", "acclimated.", "If", "you’re", "feeling", "exhausted", "and", "don’t", "know", "why,", "don’t", "be", "disheartened!", "Your", "strength", "should", "come", "back", "to", "you", "over", "time.", "Don’t", "forget", "that", "you", "can", "lose", "all", "your", "gains", "if", "you", "spend", "extended", "time", "in", "low", "altitude", "trail", "towns!", "A", "good", "example:", "Bishop", "sits", "at", "4,148", "ft", "altitude.", "Within", "the", "next", "day", "or", "two", "you’ll", "be", "hitting", "13,124", "ft", "at", "Forester", "Pass.", "Southern", "California", "Daytime", "Temperatures:", "Mostly", "warm,", "some", "hot", "days", "Nighttime", "Temperatures:", "Cold", "Snow", "on", "ground:", "No", "Snow", "from", "sky:", "No", "Rain:", "Unlikely", "Bugs:", "No", "mosquitos,", "some", "gnats", "Elevation", "change:", "Medium", "(San", "Jacinto", "is", "the", "exception)", "Water:", "Bad", "-", "expect", "long", "carries", "between", "water", "caches", "Difficulty:", "Medium", "The", "desert", "of", "SoCal", "is", "the", "longest", "of", "the", "5", "sections,", "stretching", "from", "South", "Kennedy", "Meadows", "to", "the", "Mexican", "Border,", "a", "total", "of", "~" ] ], [ [ "700", "miles.", "The", "days", "are", "much", "shorter", "now,", "so", "be", "prepared", "to", "do", "some", "night", "hiking", "(which", "might", "actually", "be", "beneficial", "to", "avoid", "the", "heat", "of", "the", "day).", "Water", "is", "extremely", "scarce,", "even", "for", "the", "NOBOs.", "You’ll", "likely", "be", "doing", "frequent", "20+", "mile", "water", "carries.", "Campsites", "near", "water", "sources", "will", "fill", "up", "with", "hikers", "all", "with", "the", "same", "plan,", "so", "expect", "to", "bunch", "up", "and", "lose", "some", "of", "that", "solitude", "you", "enjoyed", "at", "the", "start", "of", "your", "hike.", "The", "desert", "can", "be", "grueling", "for", "many", "people.", "It", "was", "for", "me.", "My", "mind", "and", "body", "were", "exhausted,", "I", "missed", "the", "sweeping", "vistas", "and", "lush", "environment", "of", "the", "Sierras,", "and", "I", "was", "just", "ready", "to", "be", "done.", "On", "the", "flip", "side,", "you’ll", "be", "treated", "to", "some", "wonderful", "trail", "towns.", "Idyllwild,", "Julian,", "Big", "Bear", "Lake,", "Wrightwood", "and", "Tehachapi", "were", "some", "of", "my", "favourites.", "Food", "carries", "are", "pretty", "light.", "Grocery", "stores", "are", "common", "and", "well", "stocked.", "Sunrise", "and", "sunset", "felt", "particularly", "magical", "in", "the", "desert.", "And", "you’re", "almost", "done!", "Cowboy", "Camping", "If", "you", "haven’t", "been", "cowboy", "camping", "yet,", "this", "is", "prime", "territory.", "I", "didn’t", "sleep", "a", "single", "night", "under", "a", "shelter", "after", "reaching", "South", "Kennedy", "Meadows.", "The", "chance", "of", "rain", "is", "going", "to", "be", "almost", "zero,", "but", "I", "wasn’t", "brave", "enough", "to", "send", "home", "my", "shelter.", "Insects,", "spiders", "and", "snakes", "are", "definitely", "a", "thing", "in", "the", "desert.", "If", "you", "can", "overcome", "the", "fear,", "I", "would", "recommend", "cowboy", "camping", "to", "everyone", "as", "a", "beautiful", "experience.", "Water", "There’s", "not", "a", "lot", "of", "it!", "Received", "wisdom", "tells", "us", "not", "to", "rely", "on", "water", "caches,", "but", "anecdotally", "most", "people", "would", "do", "just", "that.", "There", "just", "isn’t", "much", "choice", "available", "to", "hikers.", "Keep", "checking", "Guthook", "as", "to", "the", "status", "of", "caches.", "Has", "there", "been", "a", "recent", "comment", "confirming", "plentiful", "water?", "I", "would", "always", "carry", "more", "water", "than", "I", "needed", "in", "event", "that", "a", "cache", "was", "unexpectedly", "dry.", "I", "don’t", "think", "I", "ever", "carried", "more", "than", "3", "litres", "of", "water", "at", "any", "time.", "But", "I", "always", "kept", "6", "litres", "total", "carry", "capacity", "with", "a", "lightweight", "bladder", "just", "in", "case", "I", "needed", "it.", "Shrink’s", "General", "Tips", "These", "aren’t", "SOBO", "specific,", "but", "are", "just", "general", "things", "I", "picked", "up", "along", "the", "way.", "Fixed", "Schedules", "This", "is", "the", "cause", "of", "the", "so", "much", "stress", "on", "the", "trail:", "I’m", "meeting", "friend", "X", "on", "date", "Y", "at", "mile", "Z", "so", "we", "can", "hike", "together", "I", "need", "to", "be", "at", "town", "A", "by", "date", "B", "so", "I", "can", "go", "to", "a", "friend’s", "wedding", "in", "C", "I", "can’t", "stress", "enough", "how", "much", "pressure", "this", "can", "put", "you", "under!", "It’s", "not", "easy", "to", "plan", "to", "be", "at", "an", "exact", "place", "on", "an", "exact", "date.", "You’ll", "be", "stressing", "about", "it", "weeks", "beforehand.", "You", "might", "need", "to", "leave", "your", "trail", "family", "if", "you", "have", "one.", "You", "might", "feel", "pressured", "to", "make", "up", "crazy", "miles", "before", "or", "after.", "Resupply", "Shipping", "-", "PO", "vs", "Private", "Business", "In", "some", "towns", "you’ll", "have", "an", "option", "to", "ship", "to", "the", "Post", "Office,", "or", "ship", "to", "a", "private", "business", "(hotel,", "general", "store,", "trail", "angel", "etc.)", "for", "an", "additional", "fee.", "In", "almost", "all", "cases,", "I", "prefer", "to", "ship", "to", "a", "private", "business,", "purely", "to", "avoid", "arriving", "at", "the", "PO", "on", "a", "day", "where", "it", "is", "closed.", "POs", "are", "usually", "closed", "Sunday,", "and", "at", "least", "part", "of", "Saturday.", "Some", "of", "them", "close", "early", "on", "weekdays", "too.", "Taking", "a", "forced", "zero", "day,", "or", "doing", "a", "big", "sprint", "to", "the", "PO", "just", "to", "make", "it", "there", "on", "a", "weekday", "is", "not", "fun!", "It", "happened", "many", "times", "to", "many", "of", "us", "on", "the", "trail.", "If", "you", "have", "shipped", "to", "a", "PO", "start", "planning", "as", "far", "ahead", "as", "you", "can", "when", "you", "are", "going", "to", "arrive.", "If", "you", "know", "a", "week", "in", "advance", "that", "you’re", "gonna", "arrive", "on", "a", "weekend,", "you", "can", "start", "putting", "in", "extra", "miles", "gradually", "each", "day.", "Online", "Shopping", "-", "Delivery", "to", "the", "Trail", "It", "is", "hard", "to", "rely", "on", "good", "gear", "shops", "along", "the", "trail,", "except", "for", "large", "towns", "and", "the", "wonderful", "Triple", "Crown", "Outfitters", "in", "South", "Kennedy", "Meadows.", "UPDATE:", "I’ve", "since", "learned", "that", "Amazon", "only", "occasionally", "uses", "USPS,", "and", "sometimes", "uses", "other", "carriers.", "This", "surprised", "me", "because", "I", "was", "sure", "I", "and", "many", "others", "used", "Amazon", "to", "send", "General", "Delivery.", "We", "might", "have", "just", "got", "lucky.", "So", "I", "can’t", "really", "recommend", "using", "Amazon", "at", "this", "time", "to", "send", "directly", "to", "Post", "Offices.", "Try", "instead", "to", "find", "a", "private", "business", "to", "send", "to", "who", "will", "accept", "multiple", "delivery", "methods.", "If", "you", "don’t", "mind", "giving", "your", "money", "to", "billionaires,", "Amazon", "is", "very", "convenient.", "They", "ship", "USPS", "which", "means", "being", "able", "to", "send", "directly", "to", "the", "Post", "Office", "(with", "General", "Delivery).", "The", "Amazon", "website", "often", "complains", "about", "General", "Delivery", "addresses,", "but", "they", "always", "worked", "fine", "for", "me.", "The", "best", "solution", "I", "found", "is:" ] ], [ [ "1.", "Your", "Account", "2.", "Your", "Addresses", "3.", "Add", "New", "Address", "4.", "(Type", "the", "address", "in)", "5.", "Add", "Address", "6.", "(Amazon", "might", "say", "it", "doesn’t", "recognise", "the", "address)", "7.", "Click", "Add", "Address", "a", "second", "time", "8.", "It", "works!", "For", "other", "retailers", "-", "you’ll", "have", "to", "find", "out", "if", "they", "ship", "USPS", "or", "UPS.", "POs", "generally", "only", "accept", "UPS.", "Guthook", "will", "tell", "you", "which", "private", "businesses", "accept", "which", "delivery", "method.", "Misc.", "Resupply", "Tips", "Go", "to", "Trout", "Lake!", "It’s", "a", "cute", "town,", "great", "milkshakes,", "and", "splits", "up", "the", "150", "miles", "between", "White", "Pass", "and", "Cascade", "Locks.", "Portland", "is", "great,", "but", "you’ll", "spend", "much", "of", "your", "day", "trying", "to", "get", "around", "the", "city.", "Consider", "Hood", "River", "instead.", "It’s", "a", "fun", "town", "and", "easy", "enough", "to", "navigate.", "You", "can", "get", "there", "by", "bus", "from", "Cascade", "Locks.", "For", "shipping", "out", "boxes,", "private", "all-in-one", "stores", "like", "Postal", "Annex", "are", "super", "convenient:", "you", "can", "ship", "USPS,", "UPS", "and", "FEDEX", "from", "one", "place.", "Download", "all", "the", "apps", "(USPS,", "UPS,", "FEDEX)", "and", "always", "enter", "tracking", "numbers", "when", "you", "get", "them.", "Never", "put", "Tide", "Pods", "in", "your", "resupply", "boxes!", "They", "will", "make", "everything", "in", "your", "box", "taste", "of", "laundry", "detergent.", "For", "your", "boxes", "in", "WA,", "less", "is", "more!", "You", "won’t", "have", "hiker", "hunger", "yet.", "You", "can", "usually", "supplement", "with", "more", "food", "if", "you", "need", "it", "from", "stores.", "Hiker", "Boxes", "are", "notoriously", "full", "in", "WA.", "Make", "your", "WA", "boxes", "before", "you", "go.", "The", "rest", "can", "be", "made", "up", "while", "you’re", "on", "trail,", "from", "bigger", "towns", "(Hood", "River,", "Ashland,", "Mt", "Shasta,", "Tehachapi).", "Your", "OR", "and", "CA", "boxes", "will", "be", "far", "nicer", "and", "more", "attuned", "to", "your", "needs.", "Hitchhiking", "Most", "people", "starting", "the", "trail", "have", "had", "little", "to", "no", "experience", "hitchhiking.", "It", "doesn’t", "stay", "that", "way", "for", "long!", "On", "the", "PCT,", "hitchhiking", "is", "a", "requirement.", "But", "don’t", "fear!", "It", "seems", "scary,", "but", "you’ll", "get", "the", "confidence", "you", "need", "quickly,", "and", "soon", "you’ll", "be", "a", "well-oiled", "hitching", "machine!", "When", "I", "started", "out", "I", "was", "pretty", "nervous", "about", "the", "whole", "thing.", "Looking", "back,", "I", "realise", "that", "hitching", "might", "be", "one", "of", "my", "favourite", "experiences", "on", "trail.", "You", "meet", "wonderful", "people,", "get", "great", "stories,", "and", "witness", "the", "kindness", "of", "strangers", "first-hand.", "These", "tips", "are", "pretty", "generic,", "but", "I", "hope", "they", "are", "helpful:" ] ] ]
[ [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "Explainer", "videos", "are", "one", "of", "the", "most", "versatile", "and", "effective", "methods", "of", "reaching", "an", "audience,", "building", "brand", "identity,", "improving", "conversions,", "and", "even", "reducing", "administrative", "overhead.", "Moving", "into", "2016,", "we’ve", "seen", "a", "dramatic", "increase", "in", "the", "use", "of", "video", "media", "in", "general", "—", "as", "well", "as", "an", "increased", "receptiveness", "towards", "video", "in", "both", "consumer", "and", "B2B", "markets.", "Explainer", "videos", "offer", "the", "unique", "opportunity", "to", "reach", "out", "towards", "the", "consumer,", "telling", "them", "a", "compelling", "and", "complete", "story", "about", "your", "products", "and", "services.", "Here", "are", "a", "few", "facts", "that", "you", "might", "not", "know", "about", "explainer", "videos", "in", "2016.", "1.", "76%", "of", "Users", "Would", "Share", "Entertaining,", "Branded", "Videos", "Today’s", "consumers", "are", "incredibly", "savvy", "when", "it", "comes", "to", "marketing.", "Many", "business", "owners", "feel", "that", "attempts", "at", "marketing", "directly", "to", "the", "consumer", "will", "only", "lead", "to", "backlash", "—", "but", "when", "it", "comes", "to", "video,", "nothing", "could", "be", "further", "from", "the", "truth.", "As", "long", "as", "a", "branded", "video", "is", "entertaining,", "insightful,", "and", "educational,", "users", "are", "more", "than", "willing", "to", "share", "them.", "A", "well-produced", "video", "will", "spread", "word-of-mouth", "quickly,", "with", "76%", "of", "users", "being", "willing", "to", "share", "these", "videos", "to", "their", "friends", "and", "family.", "In", "fact,", "only", "3%", "of", "consumers", "react", "negatively", "enough", "to", "branding", "to", "refuse", "to", "share", "a", "video", "simply", "because", "it", "was", "created", "by", "a", "business.", "This", "statistic", "is", "incredibly", "important", "because", "it", "highlights", "the", "exponential", "returns", "that", "an", "explainer", "video", "(and", "all", "video", "marketing)", "is", "capable", "of.", "Once", "a", "video", "is", "able", "to", "“go", "viral”", "it", "can", "reach", "millions", "of", "individuals", "without", "any", "further", "investment", "of", "capital.", "Explainer", "videos", "need", "to", "be", "fun,", "exciting,", "and", "creative,", "as", "well", "as", "informative", "if", "they", "are", "to", "take", "advantage", "of", "this", "important", "fact.", "2.", "72%", "of", "Businesses", "Using", "Video", "Saw", "Improved", "Conversion", "Rates", "In", "fact,", "70%", "of", "marketers", "claim", "video", "produces", "more", "conversions", "than", "any", "other", "type", "of", "content.", "Companies", "that", "use", "video", "achieve", "41%", "more", "web", "traffic", "from", "search", "engines", "than", "companies", "that", "don’t", "—", "and", "videos", "on", "a", "landing", "page", "were", "found", "to", "increase", "conversions", "by", "80%", "or", "more.", "Don’t", "let", "all", "of", "these", "numbers", "confuse", "you,", "there’s", "really", "only", "one", "fact", "that", "you", "need", "to", "understand:", "explainer", "videos", "lead", "to", "increased", "conversions,", "and", "therefore", "increased", "profits.", "But", "how?", "Explainer", "videos", "directly", "answer", "many", "of", "the", "questions", "that", "a", "consumer", "might", "have,", "reassuring", "them", "about", "the", "quality", "of", "the", "product", "and", "the", "trustworthiness", "of", "the", "company.", "Some", "consumers", "aren’t", "going", "to", "delve", "any", "deeper", "into", "a", "product", "or", "a", "service", "before", "deciding", "to", "simply", "move", "on;", "if", "they", "have", "lingering", "doubts,", "those", "doubts", "will", "remain.", "An", "explainer", "video", "gives", "you", "the", "opportunity", "to", "directly", "address", "any", "of", "these", "concerns", "within", "the", "consumer’s", "mind", "before", "the", "consumer", "leaves", "your", "site.", "3.", "87%", "of", "Businesses", "Who", "Use", "Video", "Leverage", "Social", "Media", "Once", "you’ve", "created", "your", "video,", "where", "does", "it", "go?", "Video", "distribution", "isn’t", "the", "tremendous", "investment", "that", "it", "used", "to", "be;", "you", "don’t", "need", "to", "spend", "thousands", "of", "dollars", "on", "local", "advertising", "anymore.", "In", "fact,", "the", "actual", "distribution", "of", "your", "video", "can", "be", "completely", "free.", "Social", "media", "remains", "one", "of", "the", "most", "effective", "methods", "of", "video", "distribution,", "allowing", "your", "consumers", "to", "share", "video", "among", "themselves", "at", "no", "cost", "to", "you.", "Social", "video", "is", "said", "to", "generate", "1,200%", "more", "shares", "than", "both", "text", "and", "images", "combined.", "And", "it", "isn’t", "just", "through", "social", "sharing,", "it’s", "also", "through", "social", "search.", "Platforms", "like", "YouTube", "are", "both", "indexed", "by", "major", "search", "engines", "and", "frequently", "searched", "for", "keywords", "and", "queries", "themselves.", "By", "hosting", "your", "explainer", "videos", "on", "these", "social", "media", "platforms,", "you", "can", "actually", "reach", "out", "to", "a", "consumer", "base", "that", "has", "never", "seen", "your", "website", "or", "even", "been", "aware", "of", "your", "product", "or", "service.", "4.", "36%", "of", "Businesses", "Using", "Explainer", "Videos", "Receive", "Fewer", "Support", "Queries", "But", "as", "mentioned,", "explainer", "videos", "aren’t", "just", "about", "building", "branding", "and", "reaching", "out", "to", "the", "consumer;", "they’re", "also", "about", "streamlining", "operations", "and", "reducing", "costs.", "Explainer", "videos", "are", "able", "to", "drastically", "reduce", "the", "number", "of", "support", "queries", "an", "organization", "receives.", "Customers", "are", "more", "than", "willing", "to", "engage", "in", "“self", "help”", "as", "long", "as", "they", "are", "able", "to,", "and", "video", "is", "one", "of", "the", "most", "effective", "ways", "to", "teach", "an", "individual", "about", "a", "product", "or", "service", "that", "they", "don’t", "understand.", "And", "that’s", "not", "all.", "Not", "only", "are", "customers", "willing", "to", "engage", "in", "self", "help,", "but", "they", "actually", "prefer", "it.", "Making", "it", "possible", "for", "customers", "to", "find", "information", "out", "themselves", "rather", "than", "having", "to", "contact", "customer", "support", "actually", "increases", "satisfaction", "while", "also", "reducing", "your", "administrative", "costs.", "Customers", "want", "to", "be", "able", "to", "find", "the", "information", "that", "they", "need", "quickly;", "the", "faster", "they", "can", "resolve", "their", "problem,", "the", "better.", "This", "also", "vastly", "reduces", "the", "number", "of", "potentially", "unsatisfied", "customers", "who", "may", "feel", "as", "though", "a", "product", "or", "service", "didn’t", "work", "for", "them.", "5.", "12%", "of", "Businesses", "Still", "Don’t", "Use", "Video", "Despite", "all", "of", "the", "advantages", "that", "explainer", "videos", "clearly", "provide,", "12%", "of", "businesses", "still", "don’t" ], [ "use", "video.", "Why?", "Because", "they’re", "not", "certain", "about", "the", "return", "on", "investment.", "A", "video", "is", "produced", "and", "distributed.", "From", "there,", "where", "does", "the", "revenue", "come", "in?", "Well,", "from", "everywhere.", "The", "data", "is", "there", "to", "support", "the", "usefulness", "of", "video", "media", "in", "marketing", "campaign.", "In", "fact,", "96%", "of", "B2B", "organizations", "now", "utilize", "video", "as", "part", "of", "their", "online", "marketing", "and", "a", "full", "73%", "of", "B2B", "marketers", "believe", "video", "affects", "their", "marketing", "results.", "Explainer", "videos", "are", "part", "of", "comprehensive", "advertising", "strategies", "which", "are", "able", "to", "increase", "returns", "overall.", "Once", "a", "video", "has", "been", "produced", "and", "uploaded,", "it", "will", "continue", "to", "generate", "activity", "and", "interest", "for", "your", "business", "in", "perpetuity.", "It", "is", "essentially", "a", "one-time", "investment", "that", "will", "continue", "to", "yield", "rewards", "as", "long", "as", "it", "remains", "relevant", "to", "your", "organization.", "And", "with", "12%", "of", "businesses", "still", "not", "using", "video,", "there’s", "a", "lot", "of", "room", "for", "companies", "in", "competitive", "industries", "to", "separate", "themselves", "from", "the", "rest", "of", "the", "pack.", "It’s", "easy", "to", "see", "why", "so", "many", "businesses", "today", "are", "turning", "towards", "explainer", "videos", "as", "a", "method", "of", "improving", "their", "marketing", "strategies.", "Explainer", "videos", "are", "the", "most", "effective", "way", "to", "reach", "out", "to", "consumers", "and", "are", "able", "to", "quickly", "recapture", "their", "ROI.", "As", "video", "becomes", "more", "commonplace", "across", "social", "media", "sites", "and", "mobile", "devices,", "it", "will", "undoubtedly", "continue", "to", "grow", "as", "an", "affordable", "and", "powerful", "marketing", "technique.", "Article", "by", "Joe", "Forte,", "co-owner", "and", "producer", "at", "D-Mak", "Productions,", "a", "professional", "video", "production", "company", "based", "in", "Phoenix,", "AZ.", "Download", "your", "guide", "to", "corporate", "videos", "and", "why", "you", "need", "them!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Explainer", "videos", "are", "one", "of", "the", "most", "versatile", "and", "effective", "methods", "of", "reaching", "an", "audience,", "building", "brand", "identity,", "improving", "conversions,", "and", "even", "reducing", "administrative", "overhead.", "Moving", "into", "2016,", "we’ve", "seen", "a", "dramatic", "increase", "in", "the", "use", "of", "video", "media", "in", "general", "—", "as", "well", "as", "an", "increased", "receptiveness", "towards", "video", "in", "both", "consumer", "and", "B2B", "markets.", "Explainer", "videos", "offer", "the", "unique", "opportunity", "to", "reach", "out", "towards", "the", "consumer,", "telling", "them", "a", "compelling", "and", "complete", "story", "about", "your", "products", "and", "services.", "Here", "are", "a", "few", "facts", "that", "you", "might", "not", "know", "about", "explainer", "videos", "in", "2016.", "1.", "76%", "of", "Users", "Would", "Share", "Entertaining,", "Branded", "Videos", "Today’s", "consumers", "are", "incredibly", "savvy", "when", "it", "comes", "to", "marketing.", "Many", "business", "owners", "feel", "that", "attempts", "at", "marketing", "directly", "to", "the", "consumer", "will", "only", "lead", "to", "backlash", "—", "but", "when", "it", "comes", "to", "video,", "nothing", "could", "be", "further", "from", "the", "truth.", "As", "long", "as", "a", "branded", "video", "is", "entertaining,", "insightful,", "and", "educational,", "users", "are", "more", "than", "willing", "to", "share", "them.", "A", "well-produced", "video", "will", "spread", "word-of-mouth", "quickly,", "with", "76%", "of", "users", "being", "willing", "to", "share", "these", "videos", "to", "their", "friends", "and", "family.", "In", "fact,", "only", "3%", "of", "consumers", "react", "negatively", "enough", "to", "branding", "to", "refuse", "to", "share", "a", "video", "simply", "because", "it", "was", "created", "by", "a", "business.", "This", "statistic", "is", "incredibly", "important", "because", "it", "highlights", "the", "exponential", "returns", "that", "an", "explainer", "video", "(and", "all", "video", "marketing)", "is", "capable", "of.", "Once", "a", "video", "is", "able", "to", "“go", "viral”", "it", "can", "reach", "millions", "of", "individuals", "without", "any", "further", "investment", "of", "capital.", "Explainer", "videos", "need", "to", "be", "fun,", "exciting,", "and", "creative,", "as", "well", "as", "informative", "if", "they", "are", "to", "take", "advantage", "of", "this", "important", "fact.", "2.", "72%", "of", "Businesses", "Using", "Video", "Saw", "Improved", "Conversion", "Rates", "In", "fact,", "70%", "of", "marketers", "claim", "video", "produces", "more", "conversions", "than", "any", "other", "type", "of", "content.", "Companies", "that", "use", "video", "achieve", "41%", "more", "web", "traffic", "from", "search", "engines", "than", "companies", "that", "don’t", "—", "and", "videos", "on", "a", "landing", "page", "were", "found", "to", "increase", "conversions", "by", "80%", "or", "more.", "Don’t", "let", "all", "of", "these", "numbers", "confuse", "you,", "there’s", "really", "only", "one", "fact", "that", "you", "need", "to", "understand:", "explainer", "videos", "lead", "to", "increased", "conversions,", "and", "therefore", "increased", "profits.", "But", "how?", "Explainer", "videos", "directly", "answer", "many", "of", "the", "questions", "that", "a", "consumer", "might", "have,", "reassuring", "them", "about", "the", "quality", "of", "the", "product", "and", "the", "trustworthiness", "of", "the", "company.", "Some", "consumers", "aren’t", "going", "to", "delve", "any", "deeper", "into", "a", "product", "or", "a", "service", "before", "deciding", "to", "simply", "move", "on;", "if", "they", "have", "lingering", "doubts,", "those", "doubts", "will", "remain.", "An", "explainer", "video", "gives", "you", "the", "opportunity", "to", "directly", "address", "any", "of", "these", "concerns", "within", "the", "consumer’s", "mind", "before", "the", "consumer", "leaves", "your", "site.", "3.", "87%", "of", "Businesses", "Who", "Use", "Video", "Leverage", "Social", "Media", "Once", "you’ve", "created", "your", "video,", "where", "does", "it", "go?", "Video", "distribution", "isn’t", "the", "tremendous", "investment", "that", "it", "used", "to", "be;", "you", "don’t", "need", "to", "spend", "thousands", "of", "dollars", "on", "local", "advertising", "anymore.", "In", "fact,", "the", "actual", "distribution", "of", "your", "video", "can", "be", "completely", "free.", "Social", "media", "remains", "one", "of", "the", "most", "effective", "methods", "of", "video", "distribution,", "allowing", "your", "consumers", "to", "share", "video", "among", "themselves", "at", "no", "cost", "to", "you.", "Social", "video", "is", "said", "to", "generate", "1,200%", "more", "shares", "than", "both", "text", "and", "images", "combined.", "And", "it", "isn’t", "just", "through", "social", "sharing,", "it’s", "also", "through", "social", "search.", "Platforms", "like", "YouTube", "are", "both", "indexed", "by", "major", "search", "engines", "and", "frequently", "searched", "for", "keywords", "and", "queries", "themselves.", "By", "hosting", "your", "explainer", "videos", "on", "these", "social", "media", "platforms,", "you", "can", "actually", "reach", "out", "to", "a", "consumer", "base", "that", "has", "never", "seen", "your", "website", "or", "even", "been", "aware", "of", "your", "product", "or", "service.", "4.", "36%", "of", "Businesses", "Using", "Explainer", "Videos", "Receive", "Fewer", "Support", "Queries", "But", "as", "mentioned,", "explainer", "videos", "aren’t", "just", "about", "building", "branding", "and", "reaching", "out", "to", "the", "consumer;", "they’re", "also", "about", "streamlining", "operations", "and", "reducing", "costs.", "Explainer", "videos", "are", "able", "to", "drastically", "reduce", "the", "number", "of", "support", "queries", "an", "organization", "receives.", "Customers", "are", "more", "than", "willing", "to", "engage", "in", "“self", "help”", "as", "long", "as", "they", "are", "able", "to,", "and", "video", "is", "one", "of", "the", "most", "effective", "ways", "to", "teach", "an", "individual", "about", "a", "product", "or", "service", "that", "they", "don’t", "understand.", "And", "that’s", "not", "all.", "Not", "only", "are", "customers", "willing", "to", "engage", "in", "self", "help,", "but", "they", "actually", "prefer", "it.", "Making", "it", "possible", "for", "customers", "to", "find", "information", "out", "themselves", "rather", "than", "having", "to", "contact", "customer", "support", "actually", "increases", "satisfaction", "while", "also", "reducing", "your", "administrative", "costs.", "Customers", "want", "to", "be", "able", "to", "find", "the", "information", "that", "they", "need", "quickly;", "the", "faster", "they", "can", "resolve", "their", "problem,", "the", "better.", "This", "also", "vastly", "reduces", "the", "number", "of", "potentially", "unsatisfied", "customers", "who", "may", "feel", "as", "though", "a", "product", "or", "service", "didn’t", "work", "for", "them.", "5.", "12%", "of", "Businesses", "Still", "Don’t", "Use", "Video", "Despite", "all", "of", "the", "advantages", "that", "explainer", "videos", "clearly", "provide,", "12%", "of", "businesses", "still", "don’t" ] ], [ [ "use", "video.", "Why?", "Because", "they’re", "not", "certain", "about", "the", "return", "on", "investment.", "A", "video", "is", "produced", "and", "distributed.", "From", "there,", "where", "does", "the", "revenue", "come", "in?", "Well,", "from", "everywhere.", "The", "data", "is", "there", "to", "support", "the", "usefulness", "of", "video", "media", "in", "marketing", "campaign.", "In", "fact,", "96%", "of", "B2B", "organizations", "now", "utilize", "video", "as", "part", "of", "their", "online", "marketing", "and", "a", "full", "73%", "of", "B2B", "marketers", "believe", "video", "affects", "their", "marketing", "results.", "Explainer", "videos", "are", "part", "of", "comprehensive", "advertising", "strategies", "which", "are", "able", "to", "increase", "returns", "overall.", "Once", "a", "video", "has", "been", "produced", "and", "uploaded,", "it", "will", "continue", "to", "generate", "activity", "and", "interest", "for", "your", "business", "in", "perpetuity.", "It", "is", "essentially", "a", "one-time", "investment", "that", "will", "continue", "to", "yield", "rewards", "as", "long", "as", "it", "remains", "relevant", "to", "your", "organization.", "And", "with", "12%", "of", "businesses", "still", "not", "using", "video,", "there’s", "a", "lot", "of", "room", "for", "companies", "in", "competitive", "industries", "to", "separate", "themselves", "from", "the", "rest", "of", "the", "pack.", "It’s", "easy", "to", "see", "why", "so", "many", "businesses", "today", "are", "turning", "towards", "explainer", "videos", "as", "a", "method", "of", "improving", "their", "marketing", "strategies.", "Explainer", "videos", "are", "the", "most", "effective", "way", "to", "reach", "out", "to", "consumers", "and", "are", "able", "to", "quickly", "recapture", "their", "ROI.", "As", "video", "becomes", "more", "commonplace", "across", "social", "media", "sites", "and", "mobile", "devices,", "it", "will", "undoubtedly", "continue", "to", "grow", "as", "an", "affordable", "and", "powerful", "marketing", "technique.", "Article", "by", "Joe", "Forte,", "co-owner", "and", "producer", "at", "D-Mak", "Productions,", "a", "professional", "video", "production", "company", "based", "in", "Phoenix,", "AZ.", "Download", "your", "guide", "to", "corporate", "videos", "and", "why", "you", "need", "them!" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Heard", "of", "Setu", "Software", "Systems?", "Chances", "are", "slim,", "for", "most", "people.", "Well,", "the", "Hyderabad-based", "start-up", "is", "doing", "something", "that", "will", "perhaps", "put", "journalists", "in", "the", "first", "line", "of", "fire:", "it’s", "perfecting", "a", "code", "that", "makes", "a", "computer", "write", "an", "article", "without", "human", "intervention.The", "‘summarisation’", "technology", "is", "said", "to", "be", "the", "next", "level", "of", "making", "a", "machine", "think", "and", "generate", "text", "on", "its", "own.", "“If", "you", "want", "to", "compare", "two", "mobile", "phone", "models", "and", "get", "an", "analysis", "done,", "the", "machine", "does", "the", "comparison", "and", "generates", "an", "article", "on", "the", "mobile", "phones", "on", "its", "own.", "We", "don’t", "need", "a", "writer", "to", "do", "the", "analysis.", "Similarly,", "if", "Sachin", "Tendulkar", "gets", "out", "at", "99,", "the", "machine", "can", "generate", "an", "article", "by", "looking", "all", "such", "earlier", "occasions,”", "said", "Vasudeva", "Varma,", "chief", "scientist", "and", "co-founder", "of", "Setu.", "The", "technology", "makes", "a", "machine", "generate", "an", "article", "in", "about", "5-10", "seconds", "though", "it", "needs", "training", "for", "a", "few", "hours", "before", "it", "can", "do", "so.", "Setu", "has", "been", "in", "incubation", "for", "about", "two", "years.", "The", "start-up", "focusing", "on", "search", "technologies", "and", "artificialintelligence", "has", "also", "roped", "in", "Srini", "Koppolu,", "former", "managing", "director", "of", "Microsoft", "India", "Development", "Centre", "as", "an", "angel", "investor", "and", "chairman.", "Incubated", "at", "the", "Indian", "Institute", "of", "Information", "Technology", "(IIIT)", "in", "Hyderabad", "—", "Varma", "and", "another", "professor", "are", "co-founders", "—", "Setu", "focuses", "on", "a", "platform", "that", "has", "three", "prongs", "to", "it", "—", "search,", "analyse", "and", "summarise.", "“The", "core", "intellectual", "property", "(IP)", "that", "has", "been", "developed", "by", "the", "Setu", "team", "has", "attracted", "me", "towards", "the", "company.", "Now,", "we", "are", "building", "a", "team", "and", "focusing", "on", "productising", "the", "technology", "that", "has", "been", "developed", "in", "the", "company,”", "Koppolu,", "who", "was", "instrumental", "in", "bringing", "Microsoft", "Research", "&", "Development", "to", "India", "and", "make", "the", "software", "major", "set", "up", "one", "of", "its", "biggest", "development", "centres", "outside", "Redmond", "in", "the", "US", "in", "Hyderabad.Koppolu,", "after", "his", "exit", "from", "Microsoft", "last", "year,", "has", "invested", "in", "Mojostreet,", "a", "mobile", "games", "company.", "Setu", "is", "his", "second", "investment.", "“But", "I", "am", "not", "a", "part", "of", "management", "team", "at", "Mojostreet,”", "he", "said.What", "attracted", "him", "to", "Setu,", "he", "said,", "was", "the", "technology", "platform", "that", "is", "being", "developed.", "“We", "are", "now", "planning", "to", "develop", "a", "team", "and", "take", "the", "technology", "to", "the", "next", "level,”", "Koppolu", "said.", "Setu’s", "20-person", "team", "has", "been", "working", "on", "the", "search", "platform", "for", "the", "last", "three", "years", "and", "has", "already", "won", "several", "awards", "at", "international", "fora.", "“We", "are", "filing", "for", "patents", "and", "we", "would", "seek", "about", "10", "patents", "for", "now,”", "said", "Varma.", "Semantfire", "is", "another", "Stu", "technology", "that", "is", "ready", "for", "productisation.", "It", "reads", "text", "documents", "and", "extracts", "meaning", "out", "of", "them,", "which", "help", "the", "machines", "make", "smart", "decisions.", "“If", "you", "input", "about", "50", "pages", "of", "text", "and", "make", "the", "machine", "summarise", "it,", "you", "will", "get", "a", "proper", "summary", "in", "about", "250", "words.”Setu’s", "search", "engine", "platform", "can", "support", "more", "than", "70", "non-English", "languages.", "The", "engine", "allows", "the", "users", "to", "pose", "a", "query", "in", "their", "language", "and", "get", "search", "results", "in", "various", "languages.", "“The", "platform", "is", "ready.", "We", "are", "now", "looking", "at", "various", "applications", "based", "on", "the", "platform.", "We", "are", "focusing", "on", "education", "sector.", "Though", "Setu", "is", "already", "licensing", "the", "technology", "to", "some", "of", "the", "corporate", "clients,", "our", "focus", "would", "be", "on", "health", "and", "other", "such", "sectors", "that", "have", "larger", "societal", "impact,”", "Koppolu", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "ro", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl" ] ]
[ [ [ "Heard", "of", "Setu", "Software", "Systems?", "Chances", "are", "slim,", "for", "most", "people.", "Well,", "the", "Hyderabad-based", "start-up", "is", "doing", "something", "that", "will", "perhaps", "put", "journalists", "in", "the", "first", "line", "of", "fire:", "it’s", "perfecting", "a", "code", "that", "makes", "a", "computer", "write", "an", "article", "without", "human", "intervention.The", "‘summarisation’", "technology", "is", "said", "to", "be", "the", "next", "level", "of", "making", "a", "machine", "think", "and", "generate", "text", "on", "its", "own.", "“If", "you", "want", "to", "compare", "two", "mobile", "phone", "models", "and", "get", "an", "analysis", "done,", "the", "machine", "does", "the", "comparison", "and", "generates", "an", "article", "on", "the", "mobile", "phones", "on", "its", "own.", "We", "don’t", "need", "a", "writer", "to", "do", "the", "analysis.", "Similarly,", "if", "Sachin", "Tendulkar", "gets", "out", "at", "99,", "the", "machine", "can", "generate", "an", "article", "by", "looking", "all", "such", "earlier", "occasions,”", "said", "Vasudeva", "Varma,", "chief", "scientist", "and", "co-founder", "of", "Setu.", "The", "technology", "makes", "a", "machine", "generate", "an", "article", "in", "about", "5-10", "seconds", "though", "it", "needs", "training", "for", "a", "few", "hours", "before", "it", "can", "do", "so.", "Setu", "has", "been", "in", "incubation", "for", "about", "two", "years.", "The", "start-up", "focusing", "on", "search", "technologies", "and", "artificialintelligence", "has", "also", "roped", "in", "Srini", "Koppolu,", "former", "managing", "director", "of", "Microsoft", "India", "Development", "Centre", "as", "an", "angel", "investor", "and", "chairman.", "Incubated", "at", "the", "Indian", "Institute", "of", "Information", "Technology", "(IIIT)", "in", "Hyderabad", "—", "Varma", "and", "another", "professor", "are", "co-founders", "—", "Setu", "focuses", "on", "a", "platform", "that", "has", "three", "prongs", "to", "it", "—", "search,", "analyse", "and", "summarise.", "“The", "core", "intellectual", "property", "(IP)", "that", "has", "been", "developed", "by", "the", "Setu", "team", "has", "attracted", "me", "towards", "the", "company.", "Now,", "we", "are", "building", "a", "team", "and", "focusing", "on", "productising", "the", "technology", "that", "has", "been", "developed", "in", "the", "company,”", "Koppolu,", "who", "was", "instrumental", "in", "bringing", "Microsoft", "Research", "&", "Development", "to", "India", "and", "make", "the", "software", "major", "set", "up", "one", "of", "its", "biggest", "development", "centres", "outside", "Redmond", "in", "the", "US", "in", "Hyderabad.Koppolu,", "after", "his", "exit", "from", "Microsoft", "last", "year,", "has", "invested", "in", "Mojostreet,", "a", "mobile", "games", "company.", "Setu", "is", "his", "second", "investment.", "“But", "I", "am", "not", "a", "part", "of", "management", "team", "at", "Mojostreet,”", "he", "said.What", "attracted", "him", "to", "Setu,", "he", "said,", "was", "the", "technology", "platform", "that", "is", "being", "developed.", "“We", "are", "now", "planning", "to", "develop", "a", "team", "and", "take", "the", "technology", "to", "the", "next", "level,”", "Koppolu", "said.", "Setu’s", "20-person", "team", "has", "been", "working", "on", "the", "search", "platform", "for", "the", "last", "three", "years", "and", "has", "already", "won", "several", "awards", "at", "international", "fora.", "“We", "are", "filing", "for", "patents", "and", "we", "would", "seek", "about", "10", "patents", "for", "now,”", "said", "Varma.", "Semantfire", "is", "another", "Stu", "technology", "that", "is", "ready", "for", "productisation.", "It", "reads", "text", "documents", "and", "extracts", "meaning", "out", "of", "them,", "which", "help", "the", "machines", "make", "smart", "decisions.", "“If", "you", "input", "about", "50", "pages", "of", "text", "and", "make", "the", "machine", "summarise", "it,", "you", "will", "get", "a", "proper", "summary", "in", "about", "250", "words.”Setu’s", "search", "engine", "platform", "can", "support", "more", "than", "70", "non-English", "languages.", "The", "engine", "allows", "the", "users", "to", "pose", "a", "query", "in", "their", "language", "and", "get", "search", "results", "in", "various", "languages.", "“The", "platform", "is", "ready.", "We", "are", "now", "looking", "at", "various", "applications", "based", "on", "the", "platform.", "We", "are", "focusing", "on", "education", "sector.", "Though", "Setu", "is", "already", "licensing", "the", "technology", "to", "some", "of", "the", "corporate", "clients,", "our", "focus", "would", "be", "on", "health", "and", "other", "such", "sectors", "that", "have", "larger", "societal", "impact,”", "Koppolu", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "According", "to", "documents", "recently", "obtained", "under", "the", "Freedom", "of", "Information", "Act,", "Google's", "plan", "to", "show", "off", "its", "technology", "in", "special", "floating", "showrooms", "was", "scuppered", "late", "last", "year", "when", "the", "barges", "used", "in", "the", "project", "were", "deemed", "unsafe.", "The", "mysterious", "barges", "appeared", "around", "the", "country", "in", "the", "latter", "half", "of", "2013,", "with", "one", "in", "San", "Francisco,", "and", "one", "in", "Portland,", "Maine.", "After", "much", "speculation", "about", "their", "purpose,", "a", "Google", "spokesperson", "confirmed", "in", "November", "last", "year", "that", "it", "was", "exploring", "using", "the", "barges", "as", "\"an", "interactive", "space", "where", "people", "can", "learn", "about", "new", "technology,\"", "such", "as", "its", "augmented", "reality", "Glass", "wearable.", "But", "at", "that", "point,", "The", "Wall", "Street", "Journal", "reports,", "the", "project", "had", "already", "been", "on", "hold", "for", "two", "months", "after", "the", "US", "Coast", "Guard", "repeatedly", "raised", "fire-safety", "concerns", "that", "Google", "was", "unable", "to", "satisfactorily", "answer.", "\"Over", "5,000", "gallons", "of", "fuel", "on", "the", "main", "deck.\"", "The", "documents", "obtained", "show", "that", "the", "Coast", "Guard", "had", "significant", "questions", "about", "Google's", "plan", "at", "every", "stage", "of", "its", "development.", "In", "an", "email", "sent", "in", "March", "2013,", "Robert", "Gauvin,", "the", "Coast", "Guard's", "acting", "chief", "of", "commercial", "vessel", "compliance,", "warned", "that", "the", "barges", "would", "have", "\"over", "5,000", "gallons", "of", "fuel", "on", "the", "main", "deck\"", "alongside", "a", "\"substantial", "amount", "of", "combustible", "material.\"", "In", "August,", "the", "Coast", "Guard", "wrote", "that", "the", "boat's", "designs", "didn't", "incorporate", "\"certain", "fire", "safety", "features", "typically", "required,\"", "and", "said", "that", "it", "could", "not", "ascertain", "whether", "Google's", "contractor", "had", "made", "provisions", "for", "the", "evacuation", "of", "disabled", "people.", "In", "September,", "a", "Coast", "Guard", "inspector", "reiterated", "that", "more", "safety", "measures", "were", "needed.", "Google", "said", "it", "expected", "1,200", "people", "would", "visit", "the", "San", "Francisco", "showroom", "every", "day,", "but", "Foss", "Maritime,", "the", "contractor", "building", "the", "barges,", "said", "no", "more", "than", "150", "would", "be", "on", "board", "at", "the", "same", "time.", "Gauvin", "questioned", "this", "number", "in", "a", "March", "email,", "in", "which", "he", "said", "he", "was", "\"unaware", "of", "any", "measures", "you", "plan", "to", "use", "to", "actually", "limit", "the", "number", "of", "passengers,\"", "and", "expressed", "his", "concern", "that", "\"significant", "work", "has", "already", "been", "performed", "without", "full", "consent", "of", "the", "Coast", "Guard.\"", "Some", "Coast", "Guar", "dofficials", "signed", "non-disclosure", "agreements", "with", "Google", "The", "Wall", "Street", "Journal", "reports", "that", "some", "Coast", "Guard", "officials", "signed", "non-disclosure", "agreements", "with", "Google", "to", "keep", "the", "barge's", "purpose", "secret,", "a", "decision", "the", "government", "body", "later", "lamented.", "\"In", "hindsight", "we", "should", "have", "sought", "legal", "review", "earlier,\"", "said", "one", "captain", "in", "an", "internal", "mail", "to", "a", "group", "of", "officers.", "The", "tech", "giant", "also", "tried", "to", "get", "government", "officials", "on", "side,", "offering", "National", "Park", "Service", "managers", "a", "tour", "of", "the", "showroom", "that", "began", "with", "a", "journey", "in", "\"a", "special", "Google", "speed", "boat.\"", "Despite", "Google's", "best", "efforts", "to", "convince", "the", "relevant", "officials,", "the", "fire", "risk", "was", "apparently", "too", "high", "for", "the", "project", "to", "continue.", "Google", "was", "ordered", "to", "move", "its", "San", "Francisco", "barge", "in", "February", "this", "year,", "and", "dismantled", "and", "sold", "the", "Portland", "barge", "for", "scrap", "in", "August." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "According", "to", "documents", "recently", "obtained", "under", "the", "Freedom", "of", "Information", "Act,", "Google's", "plan", "to", "show", "off", "its", "technology", "in", "special", "floating", "showrooms", "was", "scuppered", "late", "last", "year", "when", "the", "barges", "used", "in", "the", "project", "were", "deemed", "unsafe.", "The", "mysterious", "barges", "appeared", "around", "the", "country", "in", "the", "latter", "half", "of", "2013,", "with", "one", "in", "San", "Francisco,", "and", "one", "in", "Portland,", "Maine.", "After", "much", "speculation", "about", "their", "purpose,", "a", "Google", "spokesperson", "confirmed", "in", "November", "last", "year", "that", "it", "was", "exploring", "using", "the", "barges", "as", "\"an", "interactive", "space", "where", "people", "can", "learn", "about", "new", "technology,\"", "such", "as", "its", "augmented", "reality", "Glass", "wearable.", "But", "at", "that", "point,", "The", "Wall", "Street", "Journal", "reports,", "the", "project", "had", "already", "been", "on", "hold", "for", "two", "months", "after", "the", "US", "Coast", "Guard", "repeatedly", "raised", "fire-safety", "concerns", "that", "Google", "was", "unable", "to", "satisfactorily", "answer.", "\"Over", "5,000", "gallons", "of", "fuel", "on", "the", "main", "deck.\"", "The", "documents", "obtained", "show", "that", "the", "Coast", "Guard", "had", "significant", "questions", "about", "Google's", "plan", "at", "every", "stage", "of", "its", "development.", "In", "an", "email", "sent", "in", "March", "2013,", "Robert", "Gauvin,", "the", "Coast", "Guard's", "acting", "chief", "of", "commercial", "vessel", "compliance,", "warned", "that", "the", "barges", "would", "have", "\"over", "5,000", "gallons", "of", "fuel", "on", "the", "main", "deck\"", "alongside", "a", "\"substantial", "amount", "of", "combustible", "material.\"", "In", "August,", "the", "Coast", "Guard", "wrote", "that", "the", "boat's", "designs", "didn't", "incorporate", "\"certain", "fire", "safety", "features", "typically", "required,\"", "and", "said", "that", "it", "could", "not", "ascertain", "whether", "Google's", "contractor", "had", "made", "provisions", "for", "the", "evacuation", "of", "disabled", "people.", "In", "September,", "a", "Coast", "Guard", "inspector", "reiterated", "that", "more", "safety", "measures", "were", "needed.", "Google", "said", "it", "expected", "1,200", "people", "would", "visit", "the", "San", "Francisco", "showroom", "every", "day,", "but", "Foss", "Maritime,", "the", "contractor", "building", "the", "barges,", "said", "no", "more", "than", "150", "would", "be", "on", "board", "at", "the", "same", "time.", "Gauvin", "questioned", "this", "number", "in", "a", "March", "email,", "in", "which", "he", "said", "he", "was", "\"unaware", "of", "any", "measures", "you", "plan", "to", "use", "to", "actually", "limit", "the", "number", "of", "passengers,\"", "and", "expressed", "his", "concern", "that", "\"significant", "work", "has", "already", "been", "performed", "without", "full", "consent", "of", "the", "Coast", "Guard.\"", "Some", "Coast", "Guar", "dofficials", "signed", "non-disclosure", "agreements", "with", "Google", "The", "Wall", "Street", "Journal", "reports", "that", "some", "Coast", "Guard", "officials", "signed", "non-disclosure", "agreements", "with", "Google", "to", "keep", "the", "barge's", "purpose", "secret,", "a", "decision", "the", "government", "body", "later", "lamented.", "\"In", "hindsight", "we", "should", "have", "sought", "legal", "review", "earlier,\"", "said", "one", "captain", "in", "an", "internal", "mail", "to", "a", "group", "of", "officers.", "The", "tech", "giant", "also", "tried", "to", "get", "government", "officials", "on", "side,", "offering", "National", "Park", "Service", "managers", "a", "tour", "of", "the", "showroom", "that", "began", "with", "a", "journey", "in", "\"a", "special", "Google", "speed", "boat.\"", "Despite", "Google's", "best", "efforts", "to", "convince", "the", "relevant", "officials,", "the", "fire", "risk", "was", "apparently", "too", "high", "for", "the", "project", "to", "continue.", "Google", "was", "ordered", "to", "move", "its", "San", "Francisco", "barge", "in", "February", "this", "year,", "and", "dismantled", "and", "sold", "the", "Portland", "barge", "for", "scrap", "in", "August." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Catch", "myself", "about", "to", "open", "reddit", "right", "right", "after", "closing", "it", "Accidentally", "click", "on", "it", "anyway", "117", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Catch", "myself", "about", "to", "open", "reddit", "right", "right", "after", "closing", "it", "Accidentally", "click", "on", "it", "anyway", "117", "shares" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Deux", "femmes", "marchent", "sur", "un", "pont,", "face", "au", "quartier", "des", "affaires", "de", "Pudong,", "à", "Shanghai,", "sous", "un", "épais", "nuage", "de", "pollution,", "le", "15", "décembre", "2015.", "Cinq", "millions", "de", "personnes", "dans", "le", "monde", "meurent", "prématurément", "à", "cause", "de", "l'air", "pollué.", "Plus", "de", "la", "moitié", "des", "personnes", "victimes", "de", "la", "pollution", "vivent", "en", "Chine", "et", "en", "Inde.", "Et", "selon", "une", "nouvelle", "étude", "américaine,", "le", "nombre", "de", "morts", "prématurés", "liés", "à", "la", "pollution", "de", "l'air", "va", "augmenter", "dans", "les", "vingt", "prochaines", "années.", "Publicité", "Lire", "la", "suite", "En", "2013,", "1,6", "million", "de", "Chinois", "et", "1,4", "million", "d'Indiens", "sont", "morts", "avant", "leur", "heure,", "à", "cause", "de", "la", "pollution.", "La", "faute", "aux", "particules", "fines", "dans", "l'air!", "L'OMS", "préconise", "un", "niveau", "maximum", "de", "l'ordre", "de", "25", "microgrammes", "par", "mètre", "cube", "par", "jour,", "mais", "des", "villes", "comme", "New", "Delhi", "ou", "Pékin", "enregistrent", "des", "niveaux", "à", "plus", "de", "300", "microgrammes.", "C'est", "10", "fois", "plus", "de", "particules", "qui", "finissent", "dans", "les", "poumons", "des", "habitants.", "Et", "cela", "provoque", "des", "morts", "prématurées.", "Dans", "ces", "grandes", "villes,", "la", "pollution", "de", "l'air", "a", "fait", "augmenter", "les", "problèmes", "cardiovasculaires,", "les", "cancers", "du", "poumon,", "et", "les", "maladies", "pulmonaires", "chroniques.Les", "plus", "touchés", "sont", "les", "plus", "âgés.", "→", "Ecoutez", "aussi", "l'émission", "Priorité", "Santé", ":", "Impact", "de", "la", "pollution", "de", "l’air", "sur", "la", "santé", "La", "pollution", "de", "l'air", "est", "donc", "devenue", "l'un", "des", "facteurs", "de", "risque", "mortels", "les", "plus", "aggravants", "dans", "le", "monde.", "Le", "quatrième", "après", "l'hypertension", "artérielle,", "l'obésité", "ou", "la", "cigarette.", "L'étude", "menée", "dans", "188", "pays", "révèle", "qu'en", "extérieur,", "c'est", "la", "pollution", "liée", "à", "l'industrie", "du", "charbon", "qui", "fait", "le", "plus", "de", "ravages", "en", "Chine.", "En", "Inde,", "c'est", "au", "sein", "même", "des", "maisons", "que", "l'air", "est", "impropre", "à", "cause", "de", "la", "combustion", "de", "bois", "et", "de", "crottin", "pour", "cuire", "et", "se", "chauffer.", "NewsletterRecevez", "toute", "l'actualité", "internationale", "directement", "dans", "votre", "boite", "mail", "Je", "m'abonne" ] ]
[ [ "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr" ] ]
[ [ [ "Deux", "femmes", "marchent", "sur", "un", "pont,", "face", "au", "quartier", "des", "affaires", "de", "Pudong,", "à", "Shanghai,", "sous", "un", "épais", "nuage", "de", "pollution,", "le", "15", "décembre", "2015.", "Cinq", "millions", "de", "personnes", "dans", "le", "monde", "meurent", "prématurément", "à", "cause", "de", "l'air", "pollué.", "Plus", "de", "la", "moitié", "des", "personnes", "victimes", "de", "la", "pollution", "vivent", "en", "Chine", "et", "en", "Inde.", "Et", "selon", "une", "nouvelle", "étude", "américaine,", "le", "nombre", "de", "morts", "prématurés", "liés", "à", "la", "pollution", "de", "l'air", "va", "augmenter", "dans", "les", "vingt", "prochaines", "années.", "Publicité", "Lire", "la", "suite", "En", "2013,", "1,6", "million", "de", "Chinois", "et", "1,4", "million", "d'Indiens", "sont", "morts", "avant", "leur", "heure,", "à", "cause", "de", "la", "pollution.", "La", "faute", "aux", "particules", "fines", "dans", "l'air!", "L'OMS", "préconise", "un", "niveau", "maximum", "de", "l'ordre", "de", "25", "microgrammes", "par", "mètre", "cube", "par", "jour,", "mais", "des", "villes", "comme", "New", "Delhi", "ou", "Pékin", "enregistrent", "des", "niveaux", "à", "plus", "de", "300", "microgrammes.", "C'est", "10", "fois", "plus", "de", "particules", "qui", "finissent", "dans", "les", "poumons", "des", "habitants.", "Et", "cela", "provoque", "des", "morts", "prématurées.", "Dans", "ces", "grandes", "villes,", "la", "pollution", "de", "l'air", "a", "fait", "augmenter", "les", "problèmes", "cardiovasculaires,", "les", "cancers", "du", "poumon,", "et", "les", "maladies", "pulmonaires", "chroniques.Les", "plus", "touchés", "sont", "les", "plus", "âgés.", "→", "Ecoutez", "aussi", "l'émission", "Priorité", "Santé", ":", "Impact", "de", "la", "pollution", "de", "l’air", "sur", "la", "santé", "La", "pollution", "de", "l'air", "est", "donc", "devenue", "l'un", "des", "facteurs", "de", "risque", "mortels", "les", "plus", "aggravants", "dans", "le", "monde.", "Le", "quatrième", "après", "l'hypertension", "artérielle,", "l'obésité", "ou", "la", "cigarette.", "L'étude", "menée", "dans", "188", "pays", "révèle", "qu'en", "extérieur,", "c'est", "la", "pollution", "liée", "à", "l'industrie", "du", "charbon", "qui", "fait", "le", "plus", "de", "ravages", "en", "Chine.", "En", "Inde,", "c'est", "au", "sein", "même", "des", "maisons", "que", "l'air", "est", "impropre", "à", "cause", "de", "la", "combustion", "de", "bois", "et", "de", "crottin", "pour", "cuire", "et", "se", "chauffer.", "NewsletterRecevez", "toute", "l'actualité", "internationale", "directement", "dans", "votre", "boite", "mail", "Je", "m'abonne" ] ] ]
[ [ "fr" ] ]
[ "mono" ]
[ [ "Updated", "with", "comments", "from", "Washington", "Gov.", "Jay", "Inslee", "and", "British", "Columbia", "Premier", "Christy", "Clark", "below.", "VANCOUVER,", "B.C.", "—", "Seattle", "and", "Vancouver", "are", "two", "peas", "in", "a", "pod", "in", "many", "ways,", "despite", "being", "separated", "by", "an", "international", "border,", "and", "the", "two", "cities", "could", "get", "to", "the", "next", "level", "if", "they", "work", "together", "to", "maximize", "opportunities", "and", "fix", "major", "problems.", "That’s", "the", "sentiment", "from", "business", "and", "political", "leaders", "as", "they", "open", "the", "Emerging", "Cascadia", "Innovation", "Corridor", "Conference", "this", "morning.", "The", "conference", "is", "looking", "at", "how", "Seattle", "and", "Vancouver", "can", "work", "together", "to", "become", "an", "innovation", "hub", "through", "sessions", "on", "government", "leadership,", "education,", "transportation", "and", "investment.", "Microsoft", "has", "been", "a", "big", "proponent", "of", "the", "Cascadia", "corridor.", "In", "June,", "the", "company", "opened", "a", "development", "center", "in", "downtown", "Vancouver.", "Brad", "Smith,", "Microsoft’s", "president", "and", "chief", "legal", "officer,", "this", "morning", "trumpeted", "both", "cities’", "natural", "beauty,", "access", "to", "top", "Asian", "markets", "and", "technology", "and", "innovation", "history.", "But", "none", "of", "those", "are", "the", "region’s", "greatest", "strength.", "That", "would", "be", "its", "people,", "Smith", "said.", "“If", "you", "had", "to", "pick", "one", "thing", "in", "which", "you", "wanted", "to", "be", "the", "best,", "I", "would", "argue", "this", "is", "the", "thing", "you", "would", "pick.", "If", "you", "could", "start", "with", "great", "talent,", "whether", "you", "are", "a", "company", "or", "a", "city", "or", "a", "region,", "you", "can", "build", "the", "rest,”", "Smith", "said.", "I", "believe", "we", "truly", "can", "turn", "the", "Cascadia", "Corridor", "into", "a", "global", "innovation", "leader,", "and", "I", "believe", "we", "can", "give", "Silicon", "Valley", "a", "run", "for", "its", "money", "and", "a", "run", "for", "its", "talent", "Smith", "followed", "Telus", "Executive", "Vice", "President", "Josh", "Blair", "at", "the", "conference.", "Telus", "is", "one", "of", "the", "largest", "employers", "in", "Vancouver", "and", "is", "planning", "to", "bring", "fifth", "generation", "(5G)", "data", "to", "Vancouver,", "over", "WiFi", "by", "2020.", "Blair", "said", "the", "economy", "in", "Vancouver", "is", "home", "to", "strong", "home-grown", "companies", "as", "well", "as", "a", "lot", "of", "U.S.", "companies.", "In", "addition", "to", "Microsoft,", "Amazon", "and", "Tableau", "both", "have", "Vancouver", "offices.", "Blair", "offered", "three", "tenets", "that", "will", "allow", "the", "Cascadia", "region", "to", "succeed:", "a", "backbone", "of", "strong", "technology", "across", "all", "business", "sectors,", "a", "culture", "of", "innovation", "and", "creative", "partnerships", "between", "businesses", "and", "government", "organizations.", "“I", "believe", "we", "truly", "can", "turn", "the", "Cascadia", "Corridor", "into", "a", "global", "innovation", "leader,", "and", "I", "believe", "we", "can", "give", "Silicon", "Valley", "a", "run", "for", "its", "money", "and", "a", "run", "for", "its", "talent,”", "Blair", "said.", "UPDATE:", "10:50", "a.m.", "The", "effort", "to", "make", "Seattle", "and", "Vancouver", "a", "connected", "region", "extends", "from", "state", "and", "province", "levels", "to", "business", "leaders", "to", "city", "officials.", "At", "the", "conference,", "Washington", "Gov.", "Jay", "Inslee", "and", "British", "Columbia", "Premier", "Christy", "Clark", "signed", "a", "memorandum", "of", "cooperation,", "similar", "to", "the", "one", "announced", "Monday", "signed", "by", "Seattle", "Mayor", "Ed", "Murray", "and", "Vancouver", "Mayor", "Gregor", "Robertson.", "“We", "do", "believe", "the", "whole", "is", "greater", "than", "the", "sum", "of", "the", "parts", "in", "the", "Cascadia", "technology", "corridor,", "and", "I", "think", "that’s", "what", "we", "are", "here", "to", "explore,”", "Inslee", "said.", "Clark", "envisioned", "a", "future", "where", "Vancouver", "and", "Seattle", "function", "like", "a", "“region", "without", "borders.”", "One", "example", "Clark", "cited", "could", "be", "a", "situation", "where", "a", "college", "student", "starts", "a", "program", "at", "the", "University", "of", "British", "Columbia,", "and", "then", "finishes", "it", "at", "the", "University", "of", "Washington.", "The", "word", "innovation", "has", "been", "used", "a", "lot", "at", "the", "conference,", "but", "Inslee", "and", "Clark", "both", "believe", "an", "aligned", "Seattle-Vancouver", "region,", "with", "the", "BC", "Cancer", "Agency", "and", "Fred", "Hutchinson", "Cancer", "Research", "Center,", "could", "complete", "one", "of", "the", "biggest", "possible", "breakthroughs:", "finding", "a", "cure", "for", "cancer.", "“Between", "these", "two", "institutions,", "and", "the", "ease", "of", "movement", "we", "want", "to", "have", "across", "the", "border,", "I", "think", "we", "are", "going", "to", "cure", "it,", "and", "we", "are", "going", "to", "cure", "it", "here,”", "Clark", "said.", "Check", "back", "throughout", "the", "day", "for", "more", "from", "the", "conference,", "including", "a", "keynote", "featuring", "a", "rare", "joint", "appearance", "of", "Microsoft", "co-founder", "Bill", "Gates", "and", "its", "CEO", "Satya", "Nadella." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Updated", "with", "comments", "from", "Washington", "Gov.", "Jay", "Inslee", "and", "British", "Columbia", "Premier", "Christy", "Clark", "below.", "VANCOUVER,", "B.C.", "—", "Seattle", "and", "Vancouver", "are", "two", "peas", "in", "a", "pod", "in", "many", "ways,", "despite", "being", "separated", "by", "an", "international", "border,", "and", "the", "two", "cities", "could", "get", "to", "the", "next", "level", "if", "they", "work", "together", "to", "maximize", "opportunities", "and", "fix", "major", "problems.", "That’s", "the", "sentiment", "from", "business", "and", "political", "leaders", "as", "they", "open", "the", "Emerging", "Cascadia", "Innovation", "Corridor", "Conference", "this", "morning.", "The", "conference", "is", "looking", "at", "how", "Seattle", "and", "Vancouver", "can", "work", "together", "to", "become", "an", "innovation", "hub", "through", "sessions", "on", "government", "leadership,", "education,", "transportation", "and", "investment.", "Microsoft", "has", "been", "a", "big", "proponent", "of", "the", "Cascadia", "corridor.", "In", "June,", "the", "company", "opened", "a", "development", "center", "in", "downtown", "Vancouver.", "Brad", "Smith,", "Microsoft’s", "president", "and", "chief", "legal", "officer,", "this", "morning", "trumpeted", "both", "cities’", "natural", "beauty,", "access", "to", "top", "Asian", "markets", "and", "technology", "and", "innovation", "history.", "But", "none", "of", "those", "are", "the", "region’s", "greatest", "strength.", "That", "would", "be", "its", "people,", "Smith", "said.", "“If", "you", "had", "to", "pick", "one", "thing", "in", "which", "you", "wanted", "to", "be", "the", "best,", "I", "would", "argue", "this", "is", "the", "thing", "you", "would", "pick.", "If", "you", "could", "start", "with", "great", "talent,", "whether", "you", "are", "a", "company", "or", "a", "city", "or", "a", "region,", "you", "can", "build", "the", "rest,”", "Smith", "said.", "I", "believe", "we", "truly", "can", "turn", "the", "Cascadia", "Corridor", "into", "a", "global", "innovation", "leader,", "and", "I", "believe", "we", "can", "give", "Silicon", "Valley", "a", "run", "for", "its", "money", "and", "a", "run", "for", "its", "talent", "Smith", "followed", "Telus", "Executive", "Vice", "President", "Josh", "Blair", "at", "the", "conference.", "Telus", "is", "one", "of", "the", "largest", "employers", "in", "Vancouver", "and", "is", "planning", "to", "bring", "fifth", "generation", "(5G)", "data", "to", "Vancouver,", "over", "WiFi", "by", "2020.", "Blair", "said", "the", "economy", "in", "Vancouver", "is", "home", "to", "strong", "home-grown", "companies", "as", "well", "as", "a", "lot", "of", "U.S.", "companies.", "In", "addition", "to", "Microsoft,", "Amazon", "and", "Tableau", "both", "have", "Vancouver", "offices.", "Blair", "offered", "three", "tenets", "that", "will", "allow", "the", "Cascadia", "region", "to", "succeed:", "a", "backbone", "of", "strong", "technology", "across", "all", "business", "sectors,", "a", "culture", "of", "innovation", "and", "creative", "partnerships", "between", "businesses", "and", "government", "organizations.", "“I", "believe", "we", "truly", "can", "turn", "the", "Cascadia", "Corridor", "into", "a", "global", "innovation", "leader,", "and", "I", "believe", "we", "can", "give", "Silicon", "Valley", "a", "run", "for", "its", "money", "and", "a", "run", "for", "its", "talent,”", "Blair", "said.", "UPDATE:", "10:50", "a.m.", "The", "effort", "to", "make", "Seattle", "and", "Vancouver", "a", "connected", "region", "extends", "from", "state", "and", "province", "levels", "to", "business", "leaders", "to", "city", "officials.", "At", "the", "conference,", "Washington", "Gov.", "Jay", "Inslee", "and", "British", "Columbia", "Premier", "Christy", "Clark", "signed", "a", "memorandum", "of", "cooperation,", "similar", "to", "the", "one", "announced", "Monday", "signed", "by", "Seattle", "Mayor", "Ed", "Murray", "and", "Vancouver", "Mayor", "Gregor", "Robertson.", "“We", "do", "believe", "the", "whole", "is", "greater", "than", "the", "sum", "of", "the", "parts", "in", "the", "Cascadia", "technology", "corridor,", "and", "I", "think", "that’s", "what", "we", "are", "here", "to", "explore,”", "Inslee", "said.", "Clark", "envisioned", "a", "future", "where", "Vancouver", "and", "Seattle", "function", "like", "a", "“region", "without", "borders.”", "One", "example", "Clark", "cited", "could", "be", "a", "situation", "where", "a", "college", "student", "starts", "a", "program", "at", "the", "University", "of", "British", "Columbia,", "and", "then", "finishes", "it", "at", "the", "University", "of", "Washington.", "The", "word", "innovation", "has", "been", "used", "a", "lot", "at", "the", "conference,", "but", "Inslee", "and", "Clark", "both", "believe", "an", "aligned", "Seattle-Vancouver", "region,", "with", "the", "BC", "Cancer", "Agency", "and", "Fred", "Hutchinson", "Cancer", "Research", "Center,", "could", "complete", "one", "of", "the", "biggest", "possible", "breakthroughs:", "finding", "a", "cure", "for", "cancer.", "“Between", "these", "two", "institutions,", "and", "the", "ease", "of", "movement", "we", "want", "to", "have", "across", "the", "border,", "I", "think", "we", "are", "going", "to", "cure", "it,", "and", "we", "are", "going", "to", "cure", "it", "here,”", "Clark", "said.", "Check", "back", "throughout", "the", "day", "for", "more", "from", "the", "conference,", "including", "a", "keynote", "featuring", "a", "rare", "joint", "appearance", "of", "Microsoft", "co-founder", "Bill", "Gates", "and", "its", "CEO", "Satya", "Nadella." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "by", "Yesterday,", "the", "European", "Parliament’s", "International", "Trade", "Committee", "discussed", "for", "the", "first", "time,", "the", "much", "advertised", "joint", "announcement", "by", "the", "EU", "and", "the", "US,", "to", "start", "negotiations", "for", "the", "conclusion", "of", "a", "bilateral", "Free", "Trade", "Agreement.", "As", "the", "European", "Sting", "predicted", "the", "FTA", "negotiators", "would", "be", "confronted", "with", "two", "very", "old", "and", "very", "thorny", "issues.", "According", "to", "the", "Sting", "writer", "Maria", "Milouv:", "“More", "than", "once", "in", "the", "past", "the", "EU", "and", "the", "US", "have", "tried", "to", "start", "negotiations", "for", "an", "FTA,", "but", "all", "those", "efforts", "were", "drowned", "in", "the", "difficult", "waters", "of", "the", "European", "Union’s", "agricultural", "sector.", "With", "France", "being", "the", "main", "force", "behind", "EU", "agriculture,", "everybody", "can", "understand,", "why", "a", "trade", "agreement", "between", "EU", "and", "the", "US", "was", "so", "far", "stuck", "on", "two", "issues:", "animal", "products", "from", "bovines", "grown", "with", "hormones", "and", "GMOs", "(genetically", "modified", "corn,", "wheat", "and", "soya).", "American", "exports", "to", "the", "EU", "of", "those", "products", "are", "banned.", "This", "issue", "has", "caused", "in", "the", "past", "decades", "a", "few", "trade", "wars", "over", "the", "Atlantic”.", "It", "was", "exactly", "those", "two", "chapters", "that", "the", "MEPs", "indicated", "as", "the", "more", "difficult", "ones", "to", "be", "successfully", "concluded.", "A", "Parliament", "press", "release", "reveals", "that", "many", "Parliamentarians", "raised", "those", "issues.", "The", "relevant", "part", "of", "this", "text", "is", "quoted", "here", "below.", "It", "goes", "like", "this:", "“However,", "almost", "all", "the", "MEPs", "in", "the", "debate", "highlighted", "systemic", "differences", "between", "the", "EU", "and", "the", "US,", "where", "strong", "public", "criticism", "could", "be", "expected…Vital", "Moreiria", "(S&D,", "PT),", "chair", "of", "the", "trade", "committee", "and", "responsible", "for", "relations", "with", "the", "US,", "said", "the", "biggest", "bone", "of", "contention", "in", "the", "talks", "would", "be", "animal", "and", "plant", "health", "standards.", "He", "wondered", "whether", "the", "EU", "would", "have", "to", "abandon", "its", "traditional", "precautionary", "approach", "in", "that", "area.", "Other", "MEPs", "raised", "concerns", "over", "genetically", "modified", "crops", "and", "hormones", "in", "beef.", "Syed", "Kamall", "(ECR,", "UK)", "pinpointed", "the", "need", "to", "protect", "the", "EU’s", "geographical", "indication", "system”.", "It’s", "the", "same", "old", "story", "In", "short", "the", "historical", "impediments", "always", "remain", "strong.", "The", "Americans", "however", "have", "made", "clear", "from", "the", "beginning,", "that", "an", "agreement", "without", "a", "solution", "in", "those", "two", "fronts", "has", "no", "value", "at", "all", "for", "them.", "Consequently", "the", "high", "level", "of", "the", "source", "of", "the", "joint", "EU-US", "statement", "(undersigned", "by", "the", "three", "Presidents,", "namely", "Barack", "Obama,", "Herman", "Van", "Rompuy", "and", "Manuel", "Barroso)", "is", "an", "infallible", "sign,", "that", "the", "two", "sides", "have", "irreversibly", "decided", "to", "bring", "this", "to", "the", "end.", "Unfortunately,", "the", "only", "way", "for", "this", "Gordian", "Knot", "to", "be", "solved,", "is", "that", "Europe", "has", "to", "yield", "on", "its", "positions", "over", "certain", "crucial", "issues.", "In", "short", "Europeans", "will", "probably", "have", "to", "eat", "American", "beef", "with", "hormones", "and", "genetically", "modified", "corn,", "wheat", "and", "soya.", "Probably", "they", "might", "be", "also", "obliged", "to", "open", "their", "data", "for", "the", "American", "to", "prey", "upon", "and", "accept", "the", "ACTA", "“from", "the", "window", "after", "throwing", "it", "out", "of", "the", "door”.", "Another", "indication", "that", "the", "two", "sides", "have", "decided", "to", "go", "ahead", "with", "this", "bilateral", "FTA", "at", "whatever", "cost,", "is", "the", "very", "tight", "time", "schedule", "agreed", "for", "its", "conclusion.", "According", "to", "the", "plan", "full", "scale", "negotiations", "have", "to", "start", "within", "the", "current", "Irish", "Presidency", "of", "the", "Council,", "that", "is", "before", "the", "end", "of", "June", "and", "be", "concluded", "before", "the", "end", "of", "next", "year.", "Given", "the", "immense", "scope", "of", "this", "Transatlantic", "Trade", "and", "Investment", "Partnership", "(TRIP)", "those", "twenty", "months", "remaining", "till", "December", "2014,", "is", "a", "ridiculously", "short", "time", "being", "decided", "like", "this", "just", "to", "create", "overwhelming", "pressures", "on", "the", "EU", "negotiators", "and", "their", "political", "chiefs.", "Plus", "new", "thorns", "Last", "but", "not", "least", "the", "European", "Parliamentarians", "posed", "the", "question", "of", "the", "House’s", "own", "involvement", "in", "the", "negotiations,", "a", "procedure", "that", "is", "not", "at", "all", "clear.", "The", "MEPs", "also", "raised", "the", "issue", "of", "data", "protection.", "Paul", "Murphy", "(EUL/NGL,", "IRL)", "and", "Franziska", "Keller", "(Grens/EFA,", "DE)", "asked", "whether", "the", "Parliament’s", "positions", "on", "intellectual", "property", "rights", "and", "data", "protection", "would", "be", "respected", "and", "how", "the", "House", "would", "be", "involved", "in", "the", "negotiating", "process.", "Several", "MEPs", "voiced", "fears", "about", "“sneaking", "ACTA", "in", "through", "the", "back", "door”." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "by", "Yesterday,", "the", "European", "Parliament’s", "International", "Trade", "Committee", "discussed", "for", "the", "first", "time,", "the", "much", "advertised", "joint", "announcement", "by", "the", "EU", "and", "the", "US,", "to", "start", "negotiations", "for", "the", "conclusion", "of", "a", "bilateral", "Free", "Trade", "Agreement.", "As", "the", "European", "Sting", "predicted", "the", "FTA", "negotiators", "would", "be", "confronted", "with", "two", "very", "old", "and", "very", "thorny", "issues.", "According", "to", "the", "Sting", "writer", "Maria", "Milouv:", "“More", "than", "once", "in", "the", "past", "the", "EU", "and", "the", "US", "have", "tried", "to", "start", "negotiations", "for", "an", "FTA,", "but", "all", "those", "efforts", "were", "drowned", "in", "the", "difficult", "waters", "of", "the", "European", "Union’s", "agricultural", "sector.", "With", "France", "being", "the", "main", "force", "behind", "EU", "agriculture,", "everybody", "can", "understand,", "why", "a", "trade", "agreement", "between", "EU", "and", "the", "US", "was", "so", "far", "stuck", "on", "two", "issues:", "animal", "products", "from", "bovines", "grown", "with", "hormones", "and", "GMOs", "(genetically", "modified", "corn,", "wheat", "and", "soya).", "American", "exports", "to", "the", "EU", "of", "those", "products", "are", "banned.", "This", "issue", "has", "caused", "in", "the", "past", "decades", "a", "few", "trade", "wars", "over", "the", "Atlantic”.", "It", "was", "exactly", "those", "two", "chapters", "that", "the", "MEPs", "indicated", "as", "the", "more", "difficult", "ones", "to", "be", "successfully", "concluded.", "A", "Parliament", "press", "release", "reveals", "that", "many", "Parliamentarians", "raised", "those", "issues.", "The", "relevant", "part", "of", "this", "text", "is", "quoted", "here", "below.", "It", "goes", "like", "this:", "“However,", "almost", "all", "the", "MEPs", "in", "the", "debate", "highlighted", "systemic", "differences", "between", "the", "EU", "and", "the", "US,", "where", "strong", "public", "criticism", "could", "be", "expected…Vital", "Moreiria", "(S&D,", "PT),", "chair", "of", "the", "trade", "committee", "and", "responsible", "for", "relations", "with", "the", "US,", "said", "the", "biggest", "bone", "of", "contention", "in", "the", "talks", "would", "be", "animal", "and", "plant", "health", "standards.", "He", "wondered", "whether", "the", "EU", "would", "have", "to", "abandon", "its", "traditional", "precautionary", "approach", "in", "that", "area.", "Other", "MEPs", "raised", "concerns", "over", "genetically", "modified", "crops", "and", "hormones", "in", "beef.", "Syed", "Kamall", "(ECR,", "UK)", "pinpointed", "the", "need", "to", "protect", "the", "EU’s", "geographical", "indication", "system”.", "It’s", "the", "same", "old", "story", "In", "short", "the", "historical", "impediments", "always", "remain", "strong.", "The", "Americans", "however", "have", "made", "clear", "from", "the", "beginning,", "that", "an", "agreement", "without", "a", "solution", "in", "those", "two", "fronts", "has", "no", "value", "at", "all", "for", "them.", "Consequently", "the", "high", "level", "of", "the", "source", "of", "the", "joint", "EU-US", "statement", "(undersigned", "by", "the", "three", "Presidents,", "namely", "Barack", "Obama,", "Herman" ], [ "and", "Manuel", "Barroso)", "is", "an", "infallible", "sign,", "that", "the", "two", "sides", "have", "irreversibly", "decided", "to", "bring", "this", "to", "the", "end.", "Unfortunately,", "the", "only", "way", "for", "this", "Gordian", "Knot", "to", "be", "solved,", "is", "that", "Europe", "has", "to", "yield", "on", "its", "positions", "over", "certain", "crucial", "issues.", "In", "short", "Europeans", "will", "probably", "have", "to", "eat", "American", "beef", "with", "hormones", "and", "genetically", "modified", "corn,", "wheat", "and", "soya.", "Probably", "they", "might", "be", "also", "obliged", "to", "open", "their", "data", "for", "the", "American", "to", "prey", "upon", "and", "accept", "the", "ACTA", "“from", "the", "window", "after", "throwing", "it", "out", "of", "the", "door”.", "Another", "indication", "that", "the", "two", "sides", "have", "decided", "to", "go", "ahead", "with", "this", "bilateral", "FTA", "at", "whatever", "cost,", "is", "the", "very", "tight", "time", "schedule", "agreed", "for", "its", "conclusion.", "According", "to", "the", "plan", "full", "scale", "negotiations", "have", "to", "start", "within", "the", "current", "Irish", "Presidency", "of", "the", "Council,", "that", "is", "before", "the", "end", "of", "June", "and", "be", "concluded", "before", "the", "end", "of", "next", "year.", "Given", "the", "immense", "scope", "of", "this", "Transatlantic", "Trade", "and", "Investment", "Partnership", "(TRIP)", "those", "twenty", "months", "remaining", "till", "December", "2014,", "is", "a", "ridiculously", "short", "time", "being", "decided", "like", "this", "just", "to", "create", "overwhelming", "pressures", "on", "the", "EU", "negotiators", "and", "their", "political", "chiefs.", "Plus", "new", "thorns", "Last", "but", "not", "least", "the", "European", "Parliamentarians", "posed", "the", "question", "of", "the", "House’s", "own", "involvement", "in", "the", "negotiations,", "a", "procedure", "that", "is", "not", "at", "all", "clear.", "The", "MEPs", "also", "raised", "the", "issue", "of", "data", "protection.", "Paul", "Murphy", "(EUL/NGL,", "IRL)", "and", "Franziska", "Keller", "(Grens/EFA,", "DE)", "asked", "whether", "the", "Parliament’s", "positions", "on", "intellectual", "property", "rights", "and", "data", "protection", "would", "be", "respected", "and", "how", "the", "House", "would", "be", "involved", "in", "the", "negotiating", "process.", "Several", "MEPs", "voiced", "fears", "about", "“sneaking", "ACTA", "in", "through", "the", "back", "door”." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "I", "don't", "like", "to", "sit", "down", "on", "a", "crowded", "subway", "train", "because", "I", "enjoy", "watching", "people", "fight", "for", "a", "seat", "1,085", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "I", "don't", "like", "to", "sit", "down", "on", "a", "crowded", "subway", "train", "because", "I", "enjoy", "watching", "people", "fight", "for", "a", "seat", "1,085", "shares" ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono", "mono" ]
[ [ "One", "night", "last", "November,", "Nicole", "Demmith", "was", "washing", "the", "dishes", "at", "her", "home", "near", "the", "intersection", "of", "Muskego", "and", "Becher", "streets", "when", "she", "heard", "yet", "another", "car", "accident", "outside", "her", "door", "—", "only", "this", "one", "came", "with", "a", "particularly", "awful", "clap", "of", "thunder", "and", "metal.", "She", "ran", "outside,", "same", "as", "always", "when", "she", "hears", "an", "accident.", "An", "SUV", "was", "engulfed", "in", "flames", "on", "the", "sidewalk", "at", "the", "intersection.", "Workers", "from", "a", "nearby", "convenience", "store", "ran", "out", "and", "took", "an", "extinguisher", "to", "the", "fire.", "Demmith", "and", "several", "others", "helped", "extricate", "the", "driver,", "Hector", "C.", "Hernandez,", "whose", "clothes", "had", "been", "burned", "off.", "She", "covered", "him", "with", "her", "sweater.", "The", "other", "vehicle", "in", "the", "two-car", "crash", "had", "no", "occupants", "inside", "to", "attend", "to.", "Hernandez,", "36,", "had", "been", "westbound", "along", "W.", "Becher", "Street", "and", "had", "the", "green", "light", "to", "cross", "Muskego", "Avenue.", "But", "another", "car,", "traveling", "south", "on", "Muskego", "at", "a", "“high", "rate", "of", "speed,”", "ignored", "the", "red", "light", "and", "slammed", "into", "Hernandez’s", "car", "at", "a", "45-degree", "angle,", "according", "to", "the", "police", "report.", "The", "two", "occupants", "of", "the", "speeding", "car", "ran", "off", "as", "Hernandez", "remained", "trapped", "in", "a", "burning", "vehicle", "(one", "has", "since", "been", "arrested", "and", "charges", "are", "pending).", "Hernandez,", "who", "was", "engaged", "to", "be", "married,", "died", "at", "a", "hospital", "that", "night.", "Meanwhile,", "Hernandez’s", "car", "struck", "two", "parked", "vehicles,", "one", "of", "which", "was", "totaled", "and", "has", "left", "its", "owner,", "Demmith’s", "neighbor,", "struggling", "to", "get", "to", "work.", "Demmith", "said", "the", "crash", "still", "affects", "her", "sleep.", "“It’s", "very", "traumatic,”", "said", "Demmith,", "27.", "“It", "doesn’t", "just", "affect", "that", "family,", "and", "that", "family", "is", "going", "through", "a", "lot.", "But", "it", "affects", "anybody", "that", "was", "there.", "They", "(the", "perpetrators)", "don’t", "think", "of", "the", "ripple", "effect", "it", "causes", "every", "time", "something", "like", "this", "happens.”", "The", "next", "day,", "Ald.", "Bob", "Donovan,", "who", "represents", "the", "area,", "held", "a", "press", "conference.", "With", "the", "scene", "of", "the", "accident", "at", "his", "back,", "he", "characterized", "what", "happened", "the", "previous", "night", "as", "a", "“murder.”", "Hernandez’s", "death", "would", "be", "one", "of", "64", "traffic", "fatalities", "in", "Milwaukee", "in", "2017.", "“Milwaukee", "is", "plagued", "with", "unsafe", "drivers", "and", "that", "somehow", "needs", "to", "be", "addressed,”", "he", "said.", "\"On", "your", "own”", "During", "the", "past", "several", "years,", "reckless", "driving", "has", "become", "one", "of", "the", "most", "talked-about", "public", "safety", "issues", "in", "Milwaukee.", "Mayor", "Tom", "Barrett", "has", "said", "that", "he", "hears", "about", "reckless", "and", "careless", "driving", "too", "often.", "Public", "officials", "have", "called", "it", "a", "“top-three”", "safety", "issue,", "an", "“epidemic”", "and", "a", "game", "of", "“red", "light", "roulette.”", "In", "interviews", "and", "at", "various", "public", "meetings,", "dozens", "of", "residents", "and", "officials", "have", "said", "they", "feel", "uncertain", "every", "time", "they", "drive", "in", "Milwaukee.", "Even", "when", "a", "light", "turns", "green,", "they", "said", "they", "hesitate", "to", "continue", "on", "out", "of", "fear.", "Cars", "driving", "in", "bike", "lanes,", "vehicles", "running", "red", "lights", "and", "stop", "signs,", "speeding", "and", "deadly", "hit-and-run", "accidents", "have", "become", "far", "too", "commonplace,", "they", "said.", "Not", "only", "that,", "but,", "up", "until", "last", "fall,", "it", "seemed", "many", "reckless", "drivers", "were", "going", "unpunished.", "“It’s", "gotten", "so", "bad,", "every", "day", "you", "go", "out", "there,", "you", "go", "out", "there", "on", "your", "own,”", "said", "Delilah", "Hudson,", "a", "resident", "of", "Grassland", "Manor.", "“I", "try", "not", "to", "even", "go", "out", "there", "on", "Friday", "night.", "They’ve", "been", "partying.", "I’m", "not", "out", "there", "at", "nighttime.”", "From", "1996", "through", "2013,", "traffic", "crashes", "typically", "killed", "30", "to", "40", "people", "in", "Milwaukee", "every", "year,", "according", "to", "the", "Milwaukee", "Police", "Department.", "And", "from", "1996", "through", "2011,", "the", "number", "of", "injury", "crashes", "fell", "46.3", "percent.", "But", "now", "those", "numbers", "are", "climbing.", "Forty-nine", "people", "were", "killed", "in", "2014,", "followed", "by", "64", "in", "2015,", "57", "in", "2016", "and", "64", "in", "2017.", "From", "2012", "through", "2017,", "injury", "crashes", "jumped", "26.9", "percent.", "City", "officials,", "community", "leaders", "and", "residents", "acknowledge", "the", "problem", "is", "widespread", "throughout", "Milwaukee,", "although", "North", "Side", "neighborhoods", "appear", "to", "be", "suffering", "the", "most.", "During", "the", "last", "two", "years,", "the", "aldermanic", "and", "police", "districts", "on", "the", "North", "Side", "have", "logged", "the", "most", "traffic", "fatalities,", "according", "to", "MPD", "data.", "In", "2016,", "there", "were", "56", "intersections", "in", "Milwaukee", "that", "had", "15", "or", "more", "crashes.", "The", "majority", "of", "them", "occur", "on", "North", "Side", "streets", "—", "the", "main", "culprits", "being", "West", "Capitol", "Drive,", "West", "Fond", "Du", "Lac", "Avenue", "and", "West", "Hampton", "Avenue.", "As", "things", "started", "to", "get", "worse", "during", "the", "early", "2010s,", "Milwaukee", "police", "struggled", "to", "keep", "up.", "Calls", "for", "service", "for", "reckless", "driving", "leapt", "136", "percent", "from", "2010", "to", "2016,", "according", "to", "MPD", "data.", "But", "the", "number", "of", "charges", "filed", "for", "speeding,", "failure", "to", "stop", "at", "red", "lights", "and", "failure", "to", "stop", "at", "stop", "signs", "all", "fell", "between", "42", "and", "51", "percent", "during", "the", "same", "period,", "according", "to", "Milwaukee", "Municipal", "Court." ], [ "At", "the", "same", "time,", "MPD", "operated", "under", "a", "policy", "that", "limited", "when", "officers", "could", "engage", "in", "vehicle", "pursuits.", "The", "policy", "forbade", "officers", "from", "pursuing", "unless", "they", "had", "probable", "cause", "that", "the", "vehicle", "or", "its", "occupants", "had", "been", "involved", "in", "a", "violent", "felony.", "Even", "with", "that", "narrow", "opportunity", "to", "pursue", "a", "suspect,", "officers", "still", "engaged", "in", "306", "pursuits", "in", "2016,", "the", "most", "since", "2002,", "according", "to", "an", "MPD", "study.", "But", "apprehension", "rates", "nosedived.", "Once", "as", "high", "as", "91.2", "percent", "in", "2010,", "they", "fell", "to", "36.6", "percent", "in", "2016.", "That", "pursuit", "policy", "changed", "last", "September", "after", "the", "Fire", "and", "Police", "Commission", "ordered", "Police", "Chief", "Edward", "Flynn", "to", "loosen", "it.", "Officers", "are", "now", "also", "allowed", "to", "pursue", "vehicles", "if", "they", "are", "suspected", "of", "drug", "dealing,", "or", "if", "they", "are", "driving", "recklessly.", "The", "new", "surge", "One", "month", "after", "MPD’s", "pursuit", "policy", "changed,", "so", "too", "did", "the", "department’s", "strategy", "for", "attacking", "the", "city’s", "traffic", "ills.", "Since", "mid-October,", "in", "what", "is", "referred", "as", "“the", "surge,”", "MPD", "has", "poured", "resources", "into", "56", "areas", "throughout", "the", "city", "with", "high", "volumes", "of", "traffic", "infractions,", "violent", "crime", "and", "general", "disorder,", "according", "to", "officials.", "Seventeen", "of", "Milwaukee’s", "top", "20", "intersections", "with", "the", "most", "crashes", "are", "covered", "by", "the", "surge,", "Lt.", "Derrick", "Harris", "said.", "Those", "areas", "now", "see", "a", "swarm", "in", "police", "presence,", "and", "many", "Milwaukeeans", "have", "felt", "it.", "In", "December,", "after", "62", "days", "of", "the", "surge,", "Flynn", "appeared", "at", "an", "outdoor", "press", "conference", "in", "full", "regalia,", "with", "two", "dozen", "cops", "and", "three", "police", "vehicles", "staged", "behind", "him.", "He", "reported", "that", "when", "comparing", "the", "62-day", "surge", "with", "the", "previous", "62", "days,", "car", "crashes", "fell", "citywide", "by", "9", "percent,", "crashes", "in", "the", "56", "surge", "areas", "fell", "by", "12", "percent", "and", "traffic", "stops", "increased", "56", "percent.", "Stops", "that", "resulted", "in", "a", "ticket", "jumped", "111", "percent.", "In", "addition,", "preliminary", "Wisconsin", "Department", "of", "Transportation", "data", "indicated", "traffic", "crashes", "citywide", "declined", "21", "percent", "in", "October", "and", "November", "2017", "compared", "to", "the", "same", "months", "in", "2016.", "Robberies,", "motor", "vehicle", "theft", "and", "nonfatal", "shootings", "all", "decreased", "when", "comparing", "the", "62", "days", "prior", "to", "the", "surge", "with", "the", "same", "period", "in", "2016", "Meanwhile,", "the", "number", "of", "charges", "filed", "in", "municipal", "court", "in", "2017", "for", "speeding,", "failure", "to", "stop", "at", "a", "red", "light", "and", "failure", "to", "stop", "at", "a", "stop", "sign", "were", "at", "their", "highest", "since", "2011.", "Initially", "a", "temporary", "strategy,", "Flynn,", "who", "is", "retiring", "Feb.", "16,", "said", "at", "the", "news", "conference", "that", "MPD", "would", "fold", "it", "into", "its", "permanent", "game", "plan", "for", "handling", "crime.", "“It", "certainly", "appears", "to", "us", "that", "this", "initiative,", "based", "on", "careful", "crime", "analysis", "as", "well", "as", "crash", "analysis,", "has", "produced", "a", "favorable", "outcome,”", "he", "said,", "with", "the", "mayor", "at", "his", "side.", "“We", "believe", "we", "can", "sustain", "this", "responsibly.”", "The", "surge", "has", "not", "gone", "unnoticed,", "either.", "Demmith,", "the", "woman", "who", "witnessed", "the", "fiery", "South", "Side", "crash,", "and", "North", "Side", "residents", "have", "reported", "seeing", "more", "police", "pouncing", "on", "drivers.", "“I", "think", "it’s", "great,”", "said", "Ald.", "Cavalier", "Johnson,", "whose", "district", "saw", "a", "city", "high", "20", "traffic", "fatalities", "during", "the", "last", "two", "years.", "“I", "think", "it’s", "something", "that", "folks", "in", "the", "community", "have", "been", "calling", "for", "for", "some", "time.", "Folks", "want", "to", "see", "some", "presence,", "they", "want", "to", "feel", "that", "the", "police", "understand", "what", "it", "is", "that", "they're", "talking", "about.”", "Possible", "causes", "There’s", "no", "clear", "explanation", "for", "the", "rise", "of", "reckless", "driving", "in", "Milwaukee,", "but", "officials,", "community", "leaders", "and", "residents", "have", "their", "theories.", "They", "mainly", "fall", "in", "four", "categories:", "youth", "culture,", "neglect,", "lack", "of", "driver’s", "education", "and", "police", "policies.", "Youth", "culture", "Picture", "the", "stereotypical", "idea", "of", "what", "is", "cool", "to", "a", "high", "schooler:", "You", "want", "to", "have", "a", "car", "and", "because", "there", "isn’t", "much", "to", "do", "in", "your", "free", "time,", "you", "cruise", "around", "aimlessly.", "The", "way", "some", "people", "see", "it,", "that", "cliché", "has", "evolved", "into", "a", "practice", "of", "stealing", "cars", "and", "then", "not", "just", "cruising,", "but", "driving", "carelessly,", "courting", "police", "and", "evading", "them.", "“The", "next", "generation,", "you", "know,", "if", "you", "jump", "the", "fence", "then", "I’m", "trying", "to", "jump", "the", "fence", "and", "do", "a", "cartwheel,”", "said", "Ald.", "Khalif", "Rainey,", "who", "recalled", "his", "peers", "cruising", "as", "he", "grew", "up", "in", "Milwaukee", "in", "the", "‘80s", "and", "‘90s.", "“We", "always", "want", "to", "supersede", "what", "those", "before", "us", "did.”", "It’s", "unclear", "how", "often", "a", "teenager", "is", "behind", "the", "wheel", "during", "instances", "of", "reckless", "driving,", "but", "youth", "take", "much", "of", "the", "blame", "when", "officials", "and", "community", "leaders", "speak", "on", "the", "matter.", "MPD’s", "study", "on", "vehicle", "pursuits", "noted", "that", "in", "the", "early", "2000s,", "a", "pursuit", "subject", "was", "likely", "to", "be", "middle-aged.", "But", "in", "2016,", "when", "there", "were", "more", "pursuit", "subjects", "than", "in", "the", "previous", "14", "years,", "half", "of", "the", "drivers", "were", "18", "or", "younger.", "Kalan", "Haywood", "II,", "a", "recent", "high", "school", "graduate", "and" ], [ "former", "president", "of", "the", "city’s", "Youth", "Council", "—", "which", "led", "a", "public", "service", "announcement", "project", "about", "driving", "responsibly", "—", "described", "reckless", "driving", "and", "escaping", "police", "as", "a", "way", "of", "gaining", "social", "currency.", "“It’s", "cool", "now;", "it’s", "the", "culture,”", "he", "said.", "“The", "music", "promotes", "it.", "They", "hear", "it’s", "cool.", "Their", "friends", "encourage", "it.”", "This", "isn’t", "necessarily", "new.", "State", "Rep.", "David", "Crowley,", "who", "has", "proposed", "legislation", "allowing", "automated", "traffic", "cameras", "in", "Milwaukee,", "said", "he", "knows", "adults", "who", "talk", "as", "if", "red", "lights", "are", "optional.", "He", "related", "a", "story", "in", "which", "a", "cousin", "of", "his,", "in", "his", "late", "20s,", "thought", "he", "was", "justified", "running", "a", "red", "light", "if", "he", "was", "late", "to", "an", "appointment.", "“When", "I", "was", "growing", "up", "as", "a", "kid,", "people", "used", "to", "say,", "‘No", "cop,", "no", "stop,’", "”", "said", "Crowley,", "who", "is", "31.", "“And", "there", "are", "people", "who", "still", "believe", "‘No", "cop,", "no", "stop.’", "”", "Neglect", "At", "a", "city", "committee", "meeting", "in", "January,", "MPD", "Inspector", "Jutiki", "Jackson", "was", "asked", "by", "an", "alderman", "why", "reckless", "driving", "had", "become", "so", "bad", "in", "the", "city.", "Jackson", "cited", "video", "games", "and", "social", "media", "but", "concluded,", "“A", "lot", "of", "it", "comes", "down", "to", "parenting.", "When", "parents", "don't", "teach", "their", "children", "some", "of", "the", "responsibilities", "of", "being", "a", "good", "citizen", "or", "how", "to", "drive", "properly,", "we", "see", "the", "result", "on", "the", "street.”", "City", "officials", "and", "community", "leaders", "have", "asserted", "that", "too", "many", "youth", "in", "Milwaukee", "are", "victims", "of", "neglect.", "Many", "believe", "that", "they", "are", "abandoned", "and", "not", "cared", "for,", "which", "pushes", "them", "to", "act", "without", "consequences", "in", "mind,", "according", "to", "Earl", "Ingram,", "a", "radio", "host", "who", "speaks", "at", "schools", "about", "car", "theft.", "“Stealing", "a", "car", "is", "fun", "to", "them;", "it", "adds", "excitement", "to", "their", "lives,”", "Ingram", "said", "at", "a", "town", "hall", "meeting", "about", "Crowley’s", "proposed", "camera", "legislation.", "“They", "feel", "like", "the", "society", "in", "which", "they", "live,", "makes", "them", "the", "type", "of", "people", "that", "they", "are.", "“Until", "we", "seriously", "address", "what", "they’re", "facing,", "all", "of", "this", "is", "going", "to", "be", "window-dressing.”", "Lack", "of", "driver’s", "education", "For", "the", "last", "14", "years,", "driver’s", "education", "programs", "have", "not", "been", "as", "accessible", "to", "teens", "as", "they", "once", "were.", "Students", "in", "Milwaukee", "who", "received", "free", "or", "reduced", "price", "lunches", "used", "to", "have", "free", "access", "to", "driver’s", "education.", "But", "that", "ended", "in", "2004", "when", "the", "state", "government", "stopped", "funding", "the", "program", "in", "schools.", "Since", "then,", "Milwaukee", "Public", "Schools", "charged", "students", "$150", "to", "take", "driver’s", "ed,", "which", "is", "less", "than", "half", "of", "what", "some", "private", "companies", "charge.", "But", "that", "is", "still", "“not", "accessible", "by", "all", "of", "our", "families,”", "MPS", "spokesperson", "Andrew", "Nelson", "said.", "According", "to", "a", "2015", "study", "by", "University", "of", "Wisconsin-Milwaukee’s", "Employment", "and", "Training", "Institute,", "83", "percent", "of", "black", "male", "teens", "in", "Milwaukee", "do", "not", "have", "a", "license,", "compared", "to", "36", "percent", "of", "white", "male", "teens", "in", "the", "suburbs.", "Teenagers", "from", "low-income", "households", "in", "the", "inner", "city", "of", "Milwaukee,", "no", "matter", "what", "race", "or", "gender,", "are", "unlikely", "to", "have", "a", "license,", "the", "study", "found.", "Thirty-six", "percent", "of", "low-income,", "white", "males", "have", "a", "license,", "the", "highest", "rate", "among", "the", "demographics", "studied.", "Meanwhile,", "13", "percent", "of", "low-income", "Hispanic", "males", "had", "licenses", "—", "the", "lowest", "rate.", "“This", "[reckless", "driving]", "is", "part", "of", "the", "results", "of", "[14", "years]", "of", "not", "teaching", "driver’s", "ed", "in", "school,”", "State", "Sen.", "Lena", "Taylor,", "D-Milwaukee,", "said", "at", "a", "town", "hall", "meeting.", "“When", "people", "don’t", "know", "and", "they", "learn", "on", "the", "video", "game,", "that’s", "what", "you", "get.”", "In", "2016,", "MPS", "began", "MPS", "Drive,", "a", "program", "that", "charges", "students", "only", "$35", "to", "get", "a", "temporary", "driving", "permit.", "Funded", "in", "part", "by", "public", "donations,", "the", "program", "is", "currently", "available", "to", "2,400", "students", "on", "a", "first-come,", "first-served", "basis.", "The", "goal,", "Nelson", "said,", "is", "to", "serve", "6,000", "students", "annually", "by", "the", "2020-21", "school", "year.", "Nobody", "denies", "the", "benefits", "of", "increased", "access", "to", "driver’s", "ed,", "but", "not", "everyone", "is", "convinced", "it", "will", "help", "curb", "reckless", "driving.", "“Some", "of", "the", "things", "that", "we", "see", "on", "the", "street,", "they’re", "not", "parallel", "parking", "and", "U-turn,", "Y-turn", "type", "of", "situations", "that", "you", "learn", "in", "driver’s", "education,”", "Rainey", "said.", "“It’s", "simple,", "practical", "things", "such", "as", "red", "light,", "stop.", "Yellow", "light,", "no.", "Wait", "for", "the", "green", "light,", "then", "you", "go.", "You", "knew", "that", "when", "you", "were", "in", "elementary", "school.”", "Police", "policies", "MPD", "adopted", "the", "policy", "of", "pursuing", "only", "vehicles", "with", "a", "probable", "cause", "connection", "to", "a", "violent", "felony", "in", "2010.", "In", "the", "years", "since", "then,", "critics", "said", "the", "policy", "made", "public", "that", "there", "were", "offenses" ], [ "that", "would", "not", "likely", "carry", "consequences.", "Flynn", "argued", "the", "policy", "avoided", "the", "dangerous", "pursuits", "that", "have", "killed", "innocent", "bystanders", "in", "the", "past.", "Haywood,", "the", "former", "Youth", "Council", "president,", "said", "he’s", "seen", "social", "media", "postings", "from", "his", "peers", "boasting", "about,", "and", "encouraging,", "fast,", "erratic", "driving", "if", "police", "ever", "show", "up", "in", "the", "rear-view", "mirror.", "The", "assumption", "is", "that", "police", "won’t", "give", "chase.", "“I", "was", "seeing", "people", "encourage", "it", "on", "Facebook:", "‘Keep", "going,", "don’t", "stop,’”", "he", "said.", "But", "other", "cities", "in", "the", "U.S.", "still", "have", "pursuit", "policies", "similar", "to", "MPD’s", "2010", "policy,", "Flynn", "has", "pointed", "out,", "and", "those", "cities", "do", "not", "have", "a", "reckless", "driving", "problem.", "“There", "are", "other", "variables,”", "he", "said", "after", "the", "Fire", "and", "Police", "Commission", "ordered", "the", "change.", "The", "policy", "was", "broadened", "last", "September,", "allowing", "officers", "to", "pursue", "a", "subject", "who", "is", "driving", "recklessly,", "regardless", "of", "whether", "a", "violent", "felony", "may", "have", "been", "involved.", "But", "now", "some", "expect", "there", "to", "be", "a", "learning", "curve", "among", "the", "populace.", "“It’s", "going", "to", "take", "a", "long", "time", "to", "educate", "and", "reverse", "things", "back,”", "Ald.", "José", "Pérez", "said", "at", "a", "Public", "Safety", "and", "Health", "Committee", "hearing", "in", "January.", "“Now", "we’re", "dealing", "with", "how", "bad", "it", "got", "and", "now", "we’re", "spending", "a", "lot", "time", "reversing", "that.”", "A", "tall", "task", "Although", "the", "accident", "on", "Muskego", "and", "Becher", "streets", "rattled", "her", "and", "others,", "Demmith", "described", "her", "neighborhood", "as", "one", "that", "had", "become", "more", "close-knit", "in", "the", "weeks", "since", "it", "happened.", "“One", "thing", "they", "(the", "perpetrators)", "also", "did", "was", "bring", "together", "a", "neighborhood", "a", "little", "bit", "more,”", "she", "said.", "“We’ve", "all", "been", "a", "little", "more", "alert,", "keeping", "track", "of", "whose", "cars", "are", "whose.”", "That", "kind", "of", "thing", "isn’t", "just", "happening", "on", "her", "South", "Side", "block,", "either.", "Over", "in", "Grassland", "Manor,", "residents", "have", "rallied", "around", "the", "sometimes-treacherous", "West", "Fond", "Du", "Lac", "Avenue", "and", "nearby", "West", "Capitol", "Drive,", "holding", "weekly", "neighborhood", "watch", "meetings", "and", "marching", "down", "sidewalks", "with", "picket", "signs.", "And", "many", "people", "seem", "to", "understand", "that", "reckless", "driving", "has", "become", "too", "complex", "an", "issue", "to", "be", "quickly", "fixed.", "In", "October,", "the", "day", "after", "some", "goofing", "around", "ended", "with", "a", "16-year-old", "boy", "being", "thrown", "from", "the", "hood", "of", "a", "car", "and", "killed", "at", "12th", "and", "Concordia", "streets,", "40", "community", "members", "—", "including", "grassroots", "leaders,", "state", "representatives,", "neighborhood", "children", "and", "family", "of", "the", "deceased", "—", "held", "court", "in", "front", "of", "a", "modest", "media", "scrum", "at", "the", "scene.", "For", "a", "half-hour", "they", "pleaded", "for", "greater", "access", "to", "driver’s", "education.", "They", "pleaded", "for", "people", "to", "hold", "each", "other", "accountable.", "They", "pleaded", "for", "parents", "to", "watch", "their", "kids", "better.", "They", "pleaded", "for", "perpetrators", "to", "just", "slow", "down.", "But", "halfway", "through", "it", "all,", "they", "were", "interrupted", "by", "an", "SUV", "that", "came", "squealing", "and", "speeding", "down", "12th", "Street", "and", "turned", "east", "onto", "Concordia,", "barreling", "through", "a", "four-way", "stop", "where", "40", "people", "were", "standing.", "Two", "motorcycle", "cops", "were", "on", "hand", "and", "chased", "the", "car", "down", "an", "alley.", "Minutes", "later,", "the", "two", "cops", "returned", "to", "the", "intersection", "looking", "sheepish.", "They", "said", "the", "driver", "ditched", "the", "car", "in", "the", "alley", "and", "ran", "off." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "One", "night", "last", "November,", "Nicole", "Demmith", "was", "washing", "the", "dishes", "at", "her", "home", "near", "the", "intersection", "of", "Muskego", "and", "Becher", "streets", "when", "she", "heard", "yet", "another", "car", "accident", "outside", "her", "door", "—", "only", "this", "one", "came", "with", "a", "particularly", "awful", "clap", "of", "thunder", "and", "metal.", "She", "ran", "outside,", "same", "as", "always", "when", "she", "hears", "an", "accident.", "An", "SUV", "was", "engulfed", "in", "flames", "on", "the", "sidewalk", "at", "the", "intersection.", "Workers", "from", "a", "nearby", "convenience", "store", "ran", "out", "and", "took", "an", "extinguisher", "to", "the", "fire.", "Demmith", "and", "several", "others", "helped", "extricate", "the", "driver,", "Hector", "C.", "Hernandez,", "whose", "clothes", "had", "been", "burned", "off.", "She", "covered", "him", "with", "her", "sweater.", "The", "other", "vehicle", "in", "the", "two-car", "crash", "had", "no", "occupants", "inside", "to", "attend", "to.", "Hernandez,", "36,", "had", "been", "westbound", "along", "W.", "Becher", "Street", "and", "had", "the", "green", "light", "to", "cross", "Muskego", "Avenue.", "But", "another", "car,", "traveling", "south", "on", "Muskego", "at", "a", "“high", "rate", "of", "speed,”", "ignored", "the", "red", "light", "and", "slammed", "into", "Hernandez’s", "car", "at", "a", "45-degree", "angle,", "according", "to", "the", "police", "report.", "The", "two", "occupants", "of", "the", "speeding", "car", "ran", "off", "as", "Hernandez", "remained", "trapped", "in", "a", "burning", "vehicle", "(one", "has", "since", "been", "arrested", "and", "charges", "are", "pending).", "Hernandez,", "who", "was", "engaged", "to", "be", "married,", "died", "at", "a", "hospital", "that", "night.", "Meanwhile,", "Hernandez’s", "car", "struck", "two", "parked", "vehicles,", "one", "of", "which", "was", "totaled", "and", "has", "left", "its", "owner,", "Demmith’s", "neighbor,", "struggling", "to", "get", "to", "work.", "Demmith", "said", "the", "crash", "still", "affects", "her", "sleep.", "“It’s", "very", "traumatic,”", "said", "Demmith,", "27.", "“It", "doesn’t", "just", "affect", "that", "family,", "and", "that", "family", "is", "going", "through", "a", "lot.", "But", "it", "affects", "anybody", "that", "was", "there.", "They", "(the", "perpetrators)", "don’t", "think", "of", "the", "ripple", "effect", "it", "causes", "every", "time", "something", "like", "this", "happens.”", "The", "next", "day,", "Ald.", "Bob", "Donovan,", "who", "represents", "the", "area,", "held", "a", "press", "conference.", "With", "the", "scene", "of", "the", "accident", "at", "his", "back,", "he", "characterized", "what", "happened", "the", "previous", "night", "as", "a", "“murder.”", "Hernandez’s", "death", "would", "be", "one", "of", "64", "traffic", "fatalities", "in", "Milwaukee", "in", "2017.", "“Milwaukee", "is", "plagued", "with", "unsafe", "drivers", "and", "that", "somehow", "needs", "to", "be", "addressed,”", "he", "said.", "\"On", "your", "own”", "During", "the", "past", "several", "years,", "reckless", "driving", "has", "become", "one", "of", "the", "most", "talked-about", "public", "safety", "issues", "in", "Milwaukee.", "Mayor", "Tom", "Barrett", "has", "said", "that", "he", "hears", "about", "reckless", "and", "careless", "driving", "too", "often.", "Public", "officials", "have", "called", "it", "a", "“top-three”", "safety", "issue,", "an", "“epidemic”", "and", "a", "game", "of", "“red", "light", "roulette.”", "In", "interviews", "and", "at", "various", "public", "meetings,", "dozens", "of", "residents", "and", "officials", "have", "said", "they", "feel", "uncertain", "every", "time", "they", "drive", "in", "Milwaukee.", "Even", "when", "a", "light", "turns", "green,", "they", "said", "they", "hesitate", "to", "continue", "on", "out", "of", "fear.", "Cars", "driving", "in", "bike", "lanes,", "vehicles", "running", "red", "lights", "and", "stop", "signs,", "speeding", "and", "deadly", "hit-and-run", "accidents", "have", "become", "far", "too", "commonplace,", "they", "said.", "Not", "only", "that,", "but,", "up", "until", "last", "fall,", "it", "seemed", "many", "reckless", "drivers", "were", "going", "unpunished.", "“It’s", "gotten", "so", "bad,", "every", "day", "you", "go", "out", "there,", "you", "go", "out", "there", "on", "your", "own,”", "said", "Delilah", "Hudson,", "a", "resident", "of", "Grassland", "Manor.", "“I", "try", "not", "to", "even", "go", "out", "there", "on", "Friday", "night.", "They’ve", "been", "partying.", "I’m", "not", "out", "there", "at", "nighttime.”", "From", "1996", "through", "2013,", "traffic", "crashes", "typically", "killed", "30", "to", "40", "people", "in", "Milwaukee", "every", "year,", "according", "to", "the", "Milwaukee", "Police", "Department.", "And", "from", "1996", "through", "2011,", "the", "number", "of", "injury", "crashes", "fell", "46.3", "percent.", "But", "now", "those", "numbers", "are", "climbing.", "Forty-nine", "people", "were", "killed", "in", "2014,", "followed", "by", "64", "in", "2015,", "57", "in", "2016", "and", "64", "in", "2017.", "From", "2012", "through", "2017,", "injury", "crashes", "jumped", "26.9", "percent.", "City", "officials,", "community", "leaders", "and", "residents", "acknowledge", "the", "problem", "is", "widespread", "throughout", "Milwaukee,", "although", "North", "Side", "neighborhoods", "appear", "to", "be", "suffering", "the", "most.", "During", "the", "last", "two", "years,", "the", "aldermanic", "and", "police", "districts", "on", "the", "North", "Side", "have", "logged", "the", "most", "traffic", "fatalities,", "according", "to", "MPD", "data.", "In", "2016,", "there", "were", "56", "intersections", "in", "Milwaukee", "that", "had", "15", "or", "more", "crashes.", "The", "majority", "of", "them", "occur", "on", "North", "Side", "streets", "—", "the", "main", "culprits", "being", "West", "Capitol", "Drive,", "West" ], [ "Lac", "Avenue", "and", "West", "Hampton", "Avenue.", "As", "things", "started", "to", "get", "worse", "during", "the", "early", "2010s,", "Milwaukee", "police", "struggled", "to", "keep", "up.", "Calls", "for", "service", "for", "reckless", "driving", "leapt", "136", "percent", "from", "2010", "to", "2016,", "according", "to", "MPD", "data.", "But", "the", "number", "of", "charges", "filed", "for", "speeding,", "failure", "to", "stop", "at", "red", "lights", "and", "failure", "to", "stop", "at", "stop", "signs", "all", "fell", "between", "42", "and", "51", "percent", "during", "the", "same", "period,", "according", "to", "Milwaukee", "Municipal", "Court." ] ], [ [ "At", "the", "same", "time,", "MPD", "operated", "under", "a", "policy", "that", "limited", "when", "officers", "could", "engage", "in", "vehicle", "pursuits.", "The", "policy", "forbade", "officers", "from", "pursuing", "unless", "they", "had", "probable", "cause", "that", "the", "vehicle", "or", "its", "occupants", "had", "been", "involved", "in", "a", "violent", "felony.", "Even", "with", "that", "narrow", "opportunity", "to", "pursue", "a", "suspect,", "officers", "still", "engaged", "in", "306", "pursuits", "in", "2016,", "the", "most", "since", "2002,", "according", "to", "an", "MPD", "study.", "But", "apprehension", "rates", "nosedived.", "Once", "as", "high", "as", "91.2", "percent", "in", "2010,", "they", "fell", "to", "36.6", "percent", "in", "2016.", "That", "pursuit", "policy", "changed", "last", "September", "after", "the", "Fire", "and", "Police", "Commission", "ordered", "Police", "Chief", "Edward", "Flynn", "to", "loosen", "it.", "Officers", "are", "now", "also", "allowed", "to", "pursue", "vehicles", "if", "they", "are", "suspected", "of", "drug", "dealing,", "or", "if", "they", "are", "driving", "recklessly.", "The", "new", "surge", "One", "month", "after", "MPD’s", "pursuit", "policy", "changed,", "so", "too", "did", "the", "department’s", "strategy", "for", "attacking", "the", "city’s", "traffic", "ills.", "Since", "mid-October,", "in", "what", "is", "referred", "as", "“the", "surge,”", "MPD", "has", "poured", "resources", "into", "56", "areas", "throughout", "the", "city", "with", "high", "volumes", "of", "traffic", "infractions,", "violent", "crime", "and", "general", "disorder,", "according", "to", "officials.", "Seventeen", "of", "Milwaukee’s", "top", "20", "intersections", "with", "the", "most", "crashes", "are", "covered", "by", "the", "surge,", "Lt.", "Derrick", "Harris", "said.", "Those", "areas", "now", "see", "a", "swarm", "in", "police", "presence,", "and", "many", "Milwaukeeans", "have", "felt", "it.", "In", "December,", "after", "62", "days", "of", "the", "surge,", "Flynn", "appeared", "at", "an", "outdoor", "press", "conference", "in", "full", "regalia,", "with", "two", "dozen", "cops", "and", "three", "police", "vehicles", "staged", "behind", "him.", "He", "reported", "that", "when", "comparing", "the", "62-day", "surge", "with", "the", "previous", "62", "days,", "car", "crashes", "fell", "citywide", "by", "9", "percent,", "crashes", "in", "the", "56", "surge", "areas", "fell", "by", "12", "percent", "and", "traffic", "stops", "increased", "56", "percent.", "Stops", "that", "resulted", "in", "a", "ticket", "jumped", "111", "percent.", "In", "addition,", "preliminary", "Wisconsin", "Department", "of", "Transportation", "data", "indicated", "traffic", "crashes", "citywide", "declined", "21", "percent", "in", "October", "and", "November", "2017", "compared", "to", "the", "same", "months", "in", "2016.", "Robberies,", "motor", "vehicle", "theft", "and", "nonfatal", "shootings", "all", "decreased", "when", "comparing", "the", "62", "days", "prior", "to", "the", "surge", "with", "the", "same", "period", "in", "2016", "Meanwhile,", "the", "number", "of", "charges", "filed", "in", "municipal", "court", "in", "2017", "for", "speeding,", "failure", "to", "stop", "at", "a", "red", "light", "and", "failure", "to", "stop", "at", "a", "stop", "sign", "were", "at", "their", "highest", "since", "2011.", "Initially", "a", "temporary", "strategy,", "Flynn,", "who", "is", "retiring", "Feb.", "16,", "said", "at", "the", "news", "conference", "that", "MPD", "would", "fold", "it", "into", "its", "permanent", "game", "plan", "for", "handling", "crime.", "“It", "certainly", "appears", "to", "us", "that", "this", "initiative,", "based", "on", "careful", "crime", "analysis", "as", "well", "as", "crash", "analysis,", "has", "produced", "a", "favorable", "outcome,”", "he", "said,", "with", "the", "mayor", "at", "his", "side.", "“We", "believe", "we", "can", "sustain", "this", "responsibly.”", "The", "surge", "has", "not", "gone", "unnoticed,", "either.", "Demmith,", "the", "woman", "who", "witnessed", "the", "fiery", "South", "Side", "crash,", "and", "North", "Side", "residents", "have", "reported", "seeing", "more", "police", "pouncing", "on", "drivers.", "“I", "think", "it’s", "great,”", "said", "Ald.", "Cavalier", "Johnson,", "whose", "district", "saw", "a", "city", "high", "20", "traffic", "fatalities", "during", "the", "last", "two", "years.", "“I", "think", "it’s", "something", "that", "folks", "in", "the", "community", "have", "been", "calling", "for", "for", "some", "time.", "Folks", "want", "to", "see", "some", "presence,", "they", "want", "to", "feel", "that", "the", "police", "understand", "what", "it", "is", "that", "they're", "talking", "about.”", "Possible", "causes", "There’s", "no", "clear", "explanation", "for", "the", "rise", "of", "reckless", "driving", "in", "Milwaukee,", "but", "officials,", "community", "leaders", "and", "residents", "have", "their", "theories.", "They", "mainly", "fall", "in", "four", "categories:", "youth", "culture,", "neglect,", "lack", "of", "driver’s", "education", "and", "police", "policies.", "Youth", "culture", "Picture", "the", "stereotypical", "idea", "of", "what", "is", "cool", "to", "a", "high", "schooler:", "You", "want", "to", "have", "a", "car", "and", "because", "there", "isn’t", "much", "to", "do", "in", "your", "free", "time,", "you", "cruise", "around", "aimlessly.", "The", "way", "some", "people", "see", "it,", "that", "cliché", "has", "evolved", "into", "a", "practice", "of", "stealing", "cars", "and", "then", "not", "just", "cruising,", "but", "driving", "carelessly,", "courting", "police", "and", "evading", "them.", "“The", "next", "generation,", "you", "know,", "if", "you", "jump", "the", "fence", "then", "I’m", "trying", "to", "jump", "the", "fence", "and", "do", "a", "cartwheel,”", "said", "Ald.", "Khalif", "Rainey,", "who", "recalled", "his", "peers", "cruising", "as", "he", "grew", "up", "in", "Milwaukee", "in", "the", "‘80s", "and", "‘90s.", "“We", "always", "want", "to", "supersede", "what", "those", "before", "us", "did.”", "It’s", "unclear", "how", "often", "a", "teenager", "is", "behind", "the", "wheel", "during", "instances", "of", "reckless", "driving,", "but", "youth", "take", "much", "of", "the", "blame", "when", "officials", "and", "community", "leaders", "speak", "on", "the", "matter.", "MPD’s", "study", "on", "vehicle", "pursuits", "noted", "that", "in", "the", "early", "2000s,", "a", "pursuit", "subject", "was", "likely", "to", "be", "middle-aged.", "But", "in", "2016,", "when", "there", "were", "more", "pursuit", "subjects", "than", "in", "the", "previous", "14", "years,", "half", "of", "the", "drivers", "were", "18", "or", "younger.", "Kalan", "Haywood", "II,", "a", "recent", "high", "school", "graduate", "and" ] ], [ [ "former", "president", "of", "the", "city’s", "Youth", "Council", "—", "which", "led", "a", "public", "service", "announcement", "project", "about", "driving", "responsibly", "—", "described", "reckless", "driving", "and", "escaping", "police", "as", "a", "way", "of", "gaining", "social", "currency.", "“It’s", "cool", "now;", "it’s", "the", "culture,”", "he", "said.", "“The", "music", "promotes", "it.", "They", "hear", "it’s", "cool.", "Their", "friends", "encourage", "it.”", "This", "isn’t", "necessarily", "new.", "State", "Rep.", "David", "Crowley,", "who", "has", "proposed", "legislation", "allowing", "automated", "traffic", "cameras", "in", "Milwaukee,", "said", "he", "knows", "adults", "who", "talk", "as", "if", "red", "lights", "are", "optional.", "He", "related", "a", "story", "in", "which", "a", "cousin", "of", "his,", "in", "his", "late", "20s,", "thought", "he", "was", "justified", "running", "a", "red", "light", "if", "he", "was", "late", "to", "an", "appointment.", "“When", "I", "was", "growing", "up", "as", "a", "kid,", "people", "used", "to", "say,", "‘No", "cop,", "no", "stop,’", "”", "said", "Crowley,", "who", "is", "31.", "“And", "there", "are", "people", "who", "still", "believe", "‘No", "cop,", "no", "stop.’", "”", "Neglect", "At", "a", "city", "committee", "meeting", "in", "January,", "MPD", "Inspector", "Jutiki", "Jackson", "was", "asked", "by", "an", "alderman", "why", "reckless", "driving", "had", "become", "so", "bad", "in", "the", "city.", "Jackson", "cited", "video", "games", "and", "social", "media", "but", "concluded,", "“A", "lot", "of", "it", "comes", "down", "to", "parenting.", "When", "parents", "don't", "teach", "their", "children", "some", "of", "the", "responsibilities", "of", "being", "a", "good", "citizen", "or", "how", "to", "drive", "properly,", "we", "see", "the", "result", "on", "the", "street.”", "City", "officials", "and", "community", "leaders", "have", "asserted", "that", "too", "many", "youth", "in", "Milwaukee", "are", "victims", "of", "neglect.", "Many", "believe", "that", "they", "are", "abandoned", "and", "not", "cared", "for,", "which", "pushes", "them", "to", "act", "without", "consequences", "in", "mind,", "according", "to", "Earl", "Ingram,", "a", "radio", "host", "who", "speaks", "at", "schools", "about", "car", "theft.", "“Stealing", "a", "car", "is", "fun", "to", "them;", "it", "adds", "excitement", "to", "their", "lives,”", "Ingram", "said", "at", "a", "town", "hall", "meeting", "about", "Crowley’s", "proposed", "camera", "legislation.", "“They", "feel", "like", "the", "society", "in", "which", "they", "live,", "makes", "them", "the", "type", "of", "people", "that", "they", "are.", "“Until", "we", "seriously", "address", "what", "they’re", "facing,", "all", "of", "this", "is", "going", "to", "be", "window-dressing.”", "Lack", "of", "driver’s", "education", "For", "the", "last", "14", "years,", "driver’s", "education", "programs", "have", "not", "been", "as", "accessible", "to", "teens", "as", "they", "once", "were.", "Students", "in", "Milwaukee", "who", "received", "free", "or", "reduced", "price", "lunches", "used", "to", "have", "free", "access", "to", "driver’s", "education.", "But", "that", "ended", "in", "2004", "when", "the", "state", "government", "stopped", "funding", "the", "program", "in", "schools.", "Since", "then,", "Milwaukee", "Public", "Schools", "charged", "students", "$150", "to", "take", "driver’s", "ed,", "which", "is", "less", "than", "half", "of", "what", "some", "private", "companies", "charge.", "But", "that", "is", "still", "“not", "accessible", "by", "all", "of", "our", "families,”", "MPS", "spokesperson", "Andrew", "Nelson", "said.", "According", "to", "a", "2015", "study", "by", "University", "of", "Wisconsin-Milwaukee’s", "Employment", "and", "Training", "Institute,", "83", "percent", "of", "black", "male", "teens", "in", "Milwaukee", "do", "not", "have", "a", "license,", "compared", "to", "36", "percent", "of", "white", "male", "teens", "in", "the", "suburbs.", "Teenagers", "from", "low-income", "households", "in", "the", "inner", "city", "of", "Milwaukee,", "no", "matter", "what", "race", "or", "gender,", "are", "unlikely", "to", "have", "a", "license,", "the", "study", "found.", "Thirty-six", "percent", "of", "low-income,", "white", "males", "have", "a", "license,", "the", "highest", "rate", "among", "the", "demographics", "studied.", "Meanwhile,", "13", "percent", "of", "low-income", "Hispanic", "males", "had", "licenses", "—", "the", "lowest", "rate.", "“This", "[reckless", "driving]", "is", "part", "of", "the", "results", "of", "[14", "years]", "of", "not", "teaching", "driver’s", "ed", "in", "school,”", "State", "Sen.", "Lena", "Taylor,", "D-Milwaukee,", "said", "at", "a", "town", "hall", "meeting.", "“When", "people", "don’t", "know", "and", "they", "learn", "on", "the", "video", "game,", "that’s", "what", "you", "get.”", "In", "2016,", "MPS", "began", "MPS", "Drive,", "a", "program", "that", "charges", "students", "only", "$35", "to", "get", "a", "temporary", "driving", "permit.", "Funded", "in", "part", "by", "public", "donations,", "the", "program", "is", "currently", "available", "to", "2,400", "students", "on", "a", "first-come,", "first-served", "basis.", "The", "goal,", "Nelson", "said,", "is", "to", "serve", "6,000", "students", "annually", "by", "the", "2020-21", "school", "year.", "Nobody", "denies", "the", "benefits", "of", "increased", "access", "to", "driver’s", "ed,", "but", "not", "everyone", "is", "convinced", "it", "will", "help", "curb", "reckless", "driving.", "“Some", "of", "the", "things", "that", "we", "see", "on", "the", "street,", "they’re", "not", "parallel", "parking", "and", "U-turn,", "Y-turn", "type", "of", "situations", "that", "you", "learn", "in", "driver’s", "education,”", "Rainey", "said.", "“It’s", "simple,", "practical", "things", "such", "as", "red", "light,", "stop.", "Yellow", "light,", "no.", "Wait", "for", "the", "green", "light,", "then", "you", "go.", "You", "knew", "that", "when", "you", "were", "in", "elementary", "school.”", "Police", "policies", "MPD", "adopted", "the", "policy", "of", "pursuing", "only", "vehicles", "with", "a", "probable", "cause", "connection", "to", "a", "violent", "felony", "in", "2010.", "In", "the", "years", "since", "then,", "critics", "said", "the", "policy", "made", "public", "that", "there", "were", "offenses" ] ], [ [ "that", "would", "not", "likely", "carry", "consequences.", "Flynn", "argued", "the", "policy", "avoided", "the", "dangerous", "pursuits", "that", "have", "killed", "innocent", "bystanders", "in", "the", "past.", "Haywood,", "the", "former", "Youth", "Council", "president,", "said", "he’s", "seen", "social", "media", "postings", "from", "his", "peers", "boasting", "about,", "and", "encouraging,", "fast,", "erratic", "driving", "if", "police", "ever", "show", "up", "in", "the", "rear-view", "mirror.", "The", "assumption", "is", "that", "police", "won’t", "give", "chase.", "“I", "was", "seeing", "people", "encourage", "it", "on", "Facebook:", "‘Keep", "going,", "don’t", "stop,’”", "he", "said.", "But", "other", "cities", "in", "the", "U.S.", "still", "have", "pursuit", "policies", "similar", "to", "MPD’s", "2010", "policy,", "Flynn", "has", "pointed", "out,", "and", "those", "cities", "do", "not", "have", "a", "reckless", "driving", "problem.", "“There", "are", "other", "variables,”", "he", "said", "after", "the", "Fire", "and", "Police", "Commission", "ordered", "the", "change.", "The", "policy", "was", "broadened", "last", "September,", "allowing", "officers", "to", "pursue", "a", "subject", "who", "is", "driving", "recklessly,", "regardless", "of", "whether", "a", "violent", "felony", "may", "have", "been", "involved.", "But", "now", "some", "expect", "there", "to", "be", "a", "learning", "curve", "among", "the", "populace.", "“It’s", "going", "to", "take", "a", "long", "time", "to", "educate", "and", "reverse", "things", "back,”", "Ald.", "José", "Pérez", "said", "at", "a", "Public", "Safety", "and", "Health", "Committee", "hearing", "in", "January.", "“Now", "we’re", "dealing", "with", "how", "bad", "it", "got", "and", "now", "we’re", "spending", "a", "lot", "time", "reversing", "that.”", "A", "tall", "task", "Although", "the", "accident", "on", "Muskego", "and", "Becher", "streets", "rattled", "her", "and", "others,", "Demmith", "described", "her", "neighborhood", "as", "one", "that", "had", "become", "more", "close-knit", "in", "the", "weeks", "since", "it", "happened.", "“One", "thing", "they", "(the", "perpetrators)", "also", "did", "was", "bring", "together", "a", "neighborhood", "a", "little", "bit", "more,”", "she", "said.", "“We’ve", "all", "been", "a", "little", "more", "alert,", "keeping", "track", "of", "whose", "cars", "are", "whose.”", "That", "kind", "of", "thing", "isn’t", "just", "happening", "on", "her", "South", "Side", "block,", "either.", "Over", "in", "Grassland", "Manor,", "residents", "have", "rallied", "around", "the", "sometimes-treacherous", "West", "Fond", "Du", "Lac", "Avenue", "and", "nearby", "West", "Capitol", "Drive,", "holding", "weekly", "neighborhood", "watch", "meetings", "and", "marching", "down", "sidewalks", "with", "picket", "signs.", "And", "many", "people", "seem", "to", "understand", "that", "reckless", "driving", "has", "become", "too", "complex", "an", "issue", "to", "be", "quickly", "fixed.", "In", "October,", "the", "day", "after", "some", "goofing", "around", "ended", "with", "a", "16-year-old", "boy", "being", "thrown", "from", "the", "hood", "of", "a", "car", "and", "killed", "at", "12th", "and", "Concordia", "streets,", "40", "community", "members", "—", "including", "grassroots", "leaders,", "state", "representatives,", "neighborhood", "children", "and", "family", "of", "the", "deceased", "—", "held", "court", "in", "front", "of", "a", "modest", "media", "scrum", "at", "the", "scene.", "For", "a", "half-hour", "they", "pleaded", "for", "greater", "access", "to", "driver’s", "education.", "They", "pleaded", "for", "people", "to", "hold", "each", "other", "accountable.", "They", "pleaded", "for", "parents", "to", "watch", "their", "kids", "better.", "They", "pleaded", "for", "perpetrators", "to", "just", "slow", "down.", "But", "halfway", "through", "it", "all,", "they", "were", "interrupted", "by", "an", "SUV", "that", "came", "squealing", "and", "speeding", "down", "12th", "Street", "and", "turned", "east", "onto", "Concordia,", "barreling", "through", "a", "four-way", "stop", "where", "40", "people", "were", "standing.", "Two", "motorcycle", "cops", "were", "on", "hand", "and", "chased", "the", "car", "down", "an", "alley.", "Minutes", "later,", "the", "two", "cops", "returned", "to", "the", "intersection", "looking", "sheepish.", "They", "said", "the", "driver", "ditched", "the", "car", "in", "the", "alley", "and", "ran", "off." ] ] ]
[ [ "en", "en" ], [ "en" ], [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "I've", "recently", "told", "you", "how", "happy", "I", "am", "that", "I've", "started", "reading", "Anne", "Lamott.", "One", "of", "my", "favorite", "passages", "in", "her", "book", "Grace", "(Eventually)", "is", "one", "where", "she", "describes", "going", "to", "church", "in", "a", "foul", "mood.", "She", "wakes", "up", "with", "everything", "going", "wrong,", "with", "her", "son,", "her", "friends", "and", "family,", "with", "the", "world.", "With", "those", "dark", "clouds", "hanging", "over", "her", "she", "heads", "to", "church:", "Then", "I", "headed", "to", "church.", "And", "it", "was", "not", "good.", "The", "service", "was", "way", "long,", "and", "boring,", "and", "only", "three", "people", "had", "shown", "up", "for", "the", "choir,", "and", "the", "song", "they", "sang", "sucked.", "There", "was", "a", "disruptive", "baby", "who", "had", "about", "three", "hours", "of", "neck", "control", "but", "was", "already", "spoiling", "everything", "for", "the", "rest", "of", "us.", "I", "sat", "with", "a", "look", "of", "grim", "munificence,", "like", "so", "many", "of", "your", "better", "Christians,", "exuding", "mental", "toxins", "into", "the", "atmosphere.", "I", "decided", "that", "this", "church", "was", "deteriorating.", "I", "had", "come", "for", "a", "spiritual", "booster", "shot", "and", "instead", "got", "aggravation.", "I", "was", "going", "to", "leave,", "and", "never", "come", "back.", "Then", "something", "amazing", "happened.", "I", "would", "call", "it", "grace,", "but", "then,", "I'm", "easy.", "It", "was", "that", "deeper", "breath,", "or", "pause,", "or", "briefly", "cleaner", "glasses,", "that", "gives", "us", "a", "bit", "of", "freedom", "and", "relief.", "I", "remembered", "my", "secular", "father's", "only", "strong", "spiritual", "directive:", "Don't", "be", "an", "asshole,", "and", "make", "sure", "everybody", "eats.", "Veronica", "quoted", "a", "fellow", "pastor", "recently:", "\"I'm", "only", "a", "beggar,", "showing", "the", "other", "beggars", "where", "the", "bread", "is.\"", "There", "are", "many", "kinds", "of", "bread:", "kindness,", "companionship,", "besides", "the", "flour-and-yeast", "kind...I", "realized", "I", "was", "going", "to", "get", "through", "this", "disappointing", "service,", "and", "anyway,", "you", "have", "to", "be", "somewhere:", "better", "here,", "where", "I", "have", "heard", "truth", "spoken", "so", "often,", "than,", "say,", "at", "the", "DMV,", "or", "home", "alone,", "orbiting", "my", "own", "mind.", "And", "it's", "good", "to", "be", "out", "where", "others", "can", "see", "you,", "so", "you", "can't", "be", "your", "ghastly,", "spoiled", "self.", "It", "forces", "you", "to", "act", "slightly", "more", "elegantly,", "and", "this", "improves", "your", "thoughts,", "and", "thereby", "the", "world.", "Well,", "I've", "definitely", "been", "there", "when", "it", "comes", "to", "going", "to", "church.", "And", "I", "have", "often", "felt", "similar", "moments", "of", "grace", "in", "the", "midst", "of", "what", "I", "felt", "was", "a", "generally", "sucky", "service.", "But", "then", "again,", "I'm", "easy.And", "incidentally,", "that", "little", "credo--\"Don't", "be", "an", "asshole,", "and", "make", "sure", "everybody", "eats.\"--are", "words", "to", "live", "by.", "That's", "why", "you", "read", "Lamott,", "for", "stuff", "like", "that." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "I've", "recently", "told", "you", "how", "happy", "I", "am", "that", "I've", "started", "reading", "Anne", "Lamott.", "One", "of", "my", "favorite", "passages", "in", "her", "book", "Grace", "(Eventually)", "is", "one", "where", "she", "describes", "going", "to", "church", "in", "a", "foul", "mood.", "She", "wakes", "up", "with", "everything", "going", "wrong,", "with", "her", "son,", "her", "friends", "and", "family,", "with", "the", "world.", "With", "those", "dark", "clouds", "hanging", "over", "her", "she", "heads", "to", "church:", "Then", "I", "headed", "to", "church.", "And", "it", "was", "not", "good.", "The", "service", "was", "way", "long,", "and", "boring,", "and", "only", "three", "people", "had", "shown", "up", "for", "the", "choir,", "and", "the", "song", "they", "sang", "sucked.", "There", "was", "a", "disruptive", "baby", "who", "had", "about", "three", "hours", "of", "neck", "control", "but", "was", "already", "spoiling", "everything", "for", "the", "rest", "of", "us.", "I", "sat", "with", "a", "look", "of", "grim", "munificence,", "like", "so", "many", "of", "your", "better", "Christians,", "exuding", "mental", "toxins", "into", "the", "atmosphere.", "I", "decided", "that", "this", "church", "was", "deteriorating.", "I", "had", "come", "for", "a", "spiritual", "booster", "shot", "and", "instead", "got", "aggravation.", "I", "was", "going", "to", "leave,", "and", "never", "come", "back.", "Then", "something", "amazing", "happened.", "I", "would", "call", "it", "grace,", "but", "then,", "I'm", "easy.", "It", "was", "that", "deeper", "breath,", "or", "pause,", "or", "briefly", "cleaner", "glasses,", "that", "gives", "us", "a", "bit", "of", "freedom", "and", "relief.", "I", "remembered", "my", "secular", "father's", "only", "strong", "spiritual", "directive:", "Don't", "be", "an", "asshole,", "and", "make", "sure", "everybody", "eats.", "Veronica", "quoted", "a", "fellow", "pastor", "recently:", "\"I'm", "only", "a", "beggar,", "showing", "the", "other", "beggars", "where", "the", "bread", "is.\"", "There", "are", "many", "kinds", "of", "bread:", "kindness,", "companionship,", "besides", "the", "flour-and-yeast", "kind...I", "realized", "I", "was", "going", "to", "get", "through", "this", "disappointing", "service,", "and", "anyway,", "you", "have", "to", "be", "somewhere:", "better", "here,", "where", "I", "have", "heard", "truth", "spoken", "so", "often,", "than,", "say,", "at", "the", "DMV,", "or", "home", "alone,", "orbiting", "my", "own", "mind.", "And", "it's", "good", "to", "be", "out", "where", "others", "can", "see", "you,", "so", "you", "can't", "be", "your", "ghastly,", "spoiled", "self.", "It", "forces", "you", "to", "act", "slightly", "more", "elegantly,", "and", "this", "improves", "your", "thoughts,", "and", "thereby", "the", "world.", "Well,", "I've", "definitely", "been", "there", "when", "it", "comes", "to", "going", "to", "church.", "And", "I", "have", "often", "felt", "similar", "moments", "of", "grace", "in", "the", "midst", "of", "what", "I", "felt", "was", "a", "generally", "sucky", "service.", "But", "then", "again,", "I'm", "easy.And", "incidentally,", "that", "little", "credo--\"Don't", "be", "an", "asshole,", "and", "make", "sure", "everybody", "eats.\"--are", "words", "to", "live", "by.", "That's", "why", "you", "read", "Lamott,", "for", "stuff", "like", "that." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Above:", "The", "engineers", "working", "in", "Dayton,", "Ohio,", "have", "developed", "a", "full-scale", "replica", "of", "the", "777X’s", "wiring,", "including", "miles", "of", "multicolored", "cables", "suspended", "in", "special", "racks", "from", "the", "ceiling,", "to", "test", "the", "BuG", "during", "development.", "Image", "credit:", "Tomas", "Kellner", "for", "GE", "Reports.", "Top:", "A", "concept", "for", "common", "core", "avionics", "from", "GE", "Aviation.", "All", "this", "technology", "requires", "power.", "Image", "credit:", "Alex", "Schroff", "for", "GE", "Reports.", "The", "sleek,", "raptorlike", "wings", "with", "folding", "tips", "of", "Boeing’s", "new", "wide-body", "passenger", "jet,", "the", "777X,", "are", "not", "the", "only", "departure", "from", "the", "earlier", "aircraft", "in", "the", "successfu", "l", "777", "series.", "The", "plane", "will", "be", "also", "packed", "with", "fancy", "avionics", "—", "touch-screen", "displays", "in", "the", "cockpit", "that", "make", "flying", "easier,", "cameras", "that", "help", "pilots", "navigate", "on", "the", "runway", "and", "advanced", "networking", "technology", "called", "Common", "Core", "System.", "All", "this", "technology", "requires", "power.", "In", "fact,", "the", "777X", "requires", "almost", "twice", "as", "much", "juice", "as", "its", "predecessor.More", "power", "also", "entails", "a", "new", "design", "for", "the", "777X’s", "generators,", "the", "airborne", "power", "plants", "using", "the", "plane’s", "jet", "engines", "to", "produce", "electricity.", "Since", "GE", "Aviation", "will", "be", "the", "sole", "supplier", "of", "engines", "for", "the", "plane", "—", "it", "developed", "the", "GE9X,", "the", "world’s", "largest", "jet", "engine", "for", "the", "777X—", "the", "company", "decided", "to", "bid", "on", "the", "electrical", "system", "as", "well.", "In", "the", "past,", "a", "competitor", "provided", "both", "the", "main", "and", "backup", "generators", "for", "the", "777.", "This", "time", "around,", "GE", "Aviation", "will", "build", "the", "backup", "electrical", "power", "system,", "including", "the", "backup", "generator,", "or", "BuG", "in", "industry", "shorthand.A", "certification", "requirement", "for", "the", "backup", "generator", "is", "that", "it", "work", "in", "a", "wholly", "different", "manner", "than", "the", "main", "generator,", "says", "Joseph", "Krisciunas,", "general", "manager", "and", "president", "of", "GE", "Aviation’s", "Electrical", "Power", "Systems", "unit.", "“It", "has", "to", "have", "a", "different", "pedigree,”", "he", "says.That’s", "because", "if", "there’s", "a", "design", "flaw", "that", "causes", "the", "main", "generator", "to", "fail,", "you", "don’t", "want", "the", "backup", "failing", "for", "the", "same", "reason.", "GE’s", "BuG", "uses", "the", "spinning", "rotor", "of", "the", "huge", "jet", "engine", "—", "it’s", "as", "wide", "as", "the", "body", "on", "a", "Boeing", "737", "—", "to", "turn", "a", "coil", "inside", "an", "induced", "magnetic", "field", "in", "the", "generator", "and", "produce", "alternating", "current.", "Since", "the", "frequency", "of", "the", "current", "varies", "with", "the", "speed", "of", "the", "rotor,", "the", "system", "has", "circuitry", "that", "converts", "it", "to", "direct", "current,", "and", "then", "converts", "the", "DC", "to", "AC", "at", "a", "steady", "frequency", "of", "400", "hertz,", "almost", "seven", "times", "higher", "than", "what", "Americans", "have", "in", "their", "sockets", "at", "home.", "The", "main", "777X", "generator,", "by", "contrast,", "uses", "a", "mechanical", "linkage", "to", "keep", "the", "generator", "spinning", "at", "a", "constant", "rate.GE’s", "BuG", "puts", "out", "50", "kilowatts", "of", "power", "from", "each", "of", "the", "777X’s", "two", "engines", "—", "enough", "to", "power", "all", "the", "plane’s", "avionics", "and", "essential", "systems,", "but", "not", "extras", "like", "the", "galleys", "and", "coffee", "machines", "and", "entertainment", "system.", "“If", "you’re", "using", "backup", "power,", "you’re", "going", "to", "have", "to", "go", "without", "a", "movie,”", "Krisciunas", "says.", "It", "also", "synchronizes", "with", "the", "main", "power", "system,", "so", "that", "when", "power", "is", "shut", "off,", "the", "BuG", "kicks", "in", "without", "a", "break", "in", "the", "connection.The", "777X", "contract", "is", "part", "of", "GE", "Aviation’s", "push", "to", "apply", "technology", "it", "has", "developed", "for", "the", "military", "to", "commercial", "systems.", "The", "777X’s", "BuG,", "for", "instance,", "builds", "on", "designs", "originally", "developed", "for", "the", "F/A-18", "Hornet", "supersonic", "fighter", "jets", "and", "other", "military", "planes.", "To", "develop", "this", "commercial", "expertise,", "the", "GE", "business", "has", "invested", "more", "than", "$52", "million", "in", "the", "Electrical", "Power", "Integrated", "Systems", "Center", "(EPISCenter),", "which", "opened", "five", "years", "ago", "on", "the", "campus", "of", "the", "University", "of", "Dayton", "in", "Ohio.The", "idea", "was", "to", "develop", "a", "center", "of", "excellence", "for", "mobile", "electrical", "power", "systems.", "EPISCenter", "houses", "modeling", "and", "simulation", "tools,", "test", "cells,", "banks", "of", "computer", "servers", "and", "other", "technologies", "needed", "to", "support", "large", "engineering", "programs.", "The", "engineers", "working", "here", "have", "developed", "a", "full-scale", "replica", "of", "the", "777X’s", "wiring,", "including", "miles", "of", "multicolored", "cables", "suspended", "in", "special", "racks", "from", "the", "ceiling,", "to", "test", "the", "BuG", "during", "development.", "“To", "develop", "these", "large", "systems,", "you", "need", "systems", "expertise,”", "Krisciunas", "says.", "“It’s", "not", "about", "just", "providing", "a", "generator.", "It’s", "providing", "an", "electrical", "system", "that", "integrates", "seamlessly", "with", "the", "rest", "of", "the", "aircraft.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Above:", "The", "engineers", "working", "in", "Dayton,", "Ohio,", "have", "developed", "a", "full-scale", "replica", "of", "the", "777X’s", "wiring,", "including", "miles", "of", "multicolored", "cables", "suspended", "in", "special", "racks", "from", "the", "ceiling,", "to", "test", "the", "BuG", "during", "development.", "Image", "credit:", "Tomas", "Kellner", "for", "GE", "Reports.", "Top:", "A", "concept", "for", "common", "core", "avionics", "from", "GE", "Aviation.", "All", "this", "technology", "requires", "power.", "Image", "credit:", "Alex", "Schroff", "for", "GE", "Reports.", "The", "sleek,", "raptorlike", "wings", "with", "folding", "tips", "of", "Boeing’s", "new", "wide-body", "passenger", "jet,", "the", "777X,", "are", "not", "the", "only", "departure", "from", "the", "earlier", "aircraft", "in", "the", "successfu", "l", "777", "series.", "The", "plane", "will", "be", "also", "packed", "with", "fancy", "avionics", "—", "touch-screen", "displays", "in", "the", "cockpit", "that", "make", "flying", "easier,", "cameras", "that", "help", "pilots", "navigate", "on", "the", "runway", "and", "advanced", "networking", "technology", "called", "Common", "Core", "System.", "All", "this", "technology", "requires", "power.", "In", "fact,", "the", "777X", "requires", "almost", "twice", "as", "much", "juice", "as", "its", "predecessor.More", "power", "also", "entails", "a", "new", "design", "for", "the", "777X’s", "generators,", "the", "airborne", "power", "plants", "using", "the", "plane’s", "jet", "engines", "to", "produce", "electricity.", "Since", "GE", "Aviation", "will", "be", "the", "sole", "supplier", "of", "engines", "for", "the", "plane", "—", "it", "developed", "the", "GE9X,", "the", "world’s", "largest", "jet", "engine", "for", "the", "777X—", "the", "company", "decided", "to", "bid", "on", "the", "electrical", "system", "as", "well.", "In", "the", "past,", "a", "competitor", "provided", "both", "the", "main", "and", "backup", "generators", "for", "the", "777.", "This", "time", "around,", "GE", "Aviation", "will", "build", "the", "backup", "electrical", "power", "system,", "including", "the", "backup", "generator,", "or", "BuG", "in", "industry", "shorthand.A", "certification", "requirement", "for", "the", "backup", "generator", "is", "that", "it", "work", "in", "a", "wholly", "different", "manner", "than", "the", "main", "generator,", "says", "Joseph", "Krisciunas,", "general", "manager", "and", "president", "of", "GE", "Aviation’s", "Electrical", "Power", "Systems", "unit.", "“It", "has", "to", "have", "a", "different", "pedigree,”", "he", "says.That’s", "because", "if", "there’s", "a", "design", "flaw", "that", "causes", "the", "main", "generator", "to", "fail,", "you", "don’t", "want", "the", "backup", "failing", "for", "the", "same", "reason.", "GE’s", "BuG", "uses", "the", "spinning", "rotor", "of", "the", "huge", "jet", "engine", "—", "it’s", "as", "wide", "as", "the", "body", "on", "a", "Boeing", "737", "—", "to", "turn", "a", "coil", "inside", "an", "induced", "magnetic", "field", "in", "the", "generator", "and", "produce", "alternating", "current.", "Since", "the", "frequency", "of", "the", "current", "varies", "with", "the", "speed", "of", "the", "rotor,", "the", "system", "has", "circuitry", "that", "converts", "it", "to", "direct", "current,", "and", "then", "converts", "the", "DC", "to", "AC", "at", "a", "steady", "frequency", "of", "400", "hertz,", "almost", "seven", "times", "higher", "than", "what", "Americans", "have", "in", "their", "sockets", "at", "home.", "The", "main", "777X", "generator,", "by", "contrast,", "uses", "a", "mechanical", "linkage", "to", "keep", "the", "generator", "spinning", "at", "a", "constant", "rate.GE’s", "BuG", "puts", "out", "50", "kilowatts", "of", "power", "from", "each", "of", "the", "777X’s", "two", "engines", "—", "enough", "to", "power", "all", "the", "plane’s", "avionics", "and", "essential", "systems,", "but", "not", "extras", "like", "the", "galleys", "and", "coffee", "machines", "and", "entertainment", "system.", "“If", "you’re", "using", "backup", "power,", "you’re", "going", "to", "have", "to", "go", "without", "a", "movie,”", "Krisciunas", "says.", "It", "also", "synchronizes", "with", "the", "main", "power", "system,", "so", "that", "when", "power", "is", "shut", "off,", "the", "BuG", "kicks", "in", "without", "a", "break", "in", "the", "connection.The", "777X", "contract", "is", "part", "of", "GE", "Aviation’s", "push", "to", "apply", "technology", "it", "has", "developed", "for", "the", "military", "to", "commercial", "systems.", "The", "777X’s", "BuG,", "for", "instance,", "builds", "on", "designs", "originally", "developed", "for", "the", "F/A-18", "Hornet", "supersonic", "fighter", "jets", "and", "other", "military", "planes.", "To", "develop", "this", "commercial", "expertise,", "the", "GE", "business", "has", "invested", "more", "than", "$52", "million", "in", "the", "Electrical", "Power", "Integrated", "Systems", "Center", "(EPISCenter),", "which", "opened", "five", "years", "ago", "on", "the", "campus", "of", "the", "University", "of", "Dayton", "in", "Ohio.The", "idea", "was", "to", "develop", "a", "center", "of", "excellence", "for", "mobile", "electrical", "power", "systems.", "EPISCenter", "houses", "modeling", "and", "simulation", "tools,", "test", "cells,", "banks", "of", "computer", "servers", "and", "other", "technologies", "needed", "to", "support", "large", "engineering", "programs.", "The", "engineers", "working", "here", "have", "developed", "a", "full-scale", "replica", "of", "the", "777X’s", "wiring,", "including", "miles", "of", "multicolored", "cables", "suspended", "in", "special", "racks", "from", "the", "ceiling,", "to", "test", "the", "BuG", "during", "development.", "“To", "develop", "these", "large", "systems,", "you", "need", "systems", "expertise,”", "Krisciunas", "says.", "“It’s", "not", "about", "just", "providing", "a", "generator.", "It’s", "providing", "an", "electrical", "system", "that", "integrates", "seamlessly", "with", "the", "rest", "of", "the", "aircraft.”" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "india", "Updated:", "Jun", "29,", "2014", "01:31", "IST", "Senior", "Congress", "leader", "AK", "Antony’s", "comment", "on", "dipping", "secular", "credentials", "of", "the", "party", "has", "triggered", "a", "debate", "in", "the", "state.", "The", "former", "defence", "minister", "had", "admitted", "on", "Friday", "that", "his", "party’s", "growing", "proximity", "to", "minority", "communities", "led", "people", "to", "doubt", "its", "secular", "credentials.", "“People", "have", "a", "feeling", "that", "the", "Congress", "bats", "for", "a", "few", "communities,", "especially", "minorities", "in", "Kerala.", "While", "professing", "and", "practising", "secularism", "the", "party", "has", "some", "slants", "that", "all", "sections", "do", "not", "get", "justice.", "This", "has", "to", "be", "removed,”", "he", "said", "raising", "many", "eyebrows.", "“Some", "sections", "of", "society", "have", "an", "impression", "that", "the", "party", "is", "inclined", "to", "certain", "communities", "or", "organisations.", "Congress", "policy", "is", "equal", "justice", "to", "all.", "But", "people", "have", "doubt", "whether", "that", "policy", "is", "being", "implemented", "or", "not,”", "he", "said.", "He", "said", "such", "apprehensions", "would", "open", "the", "door", "for", "communal", "forces", "in", "Kerala,", "known", "for", "its", "amity", "and", "brotherhood.", "The", "CPM", "has", "welcomed", "Antony’s", "‘self-criticism’.", "“What", "he", "said", "is", "right.", "To", "checkmate", "Communism", "the", "party", "is", "of", "late", "embracing", "everyone", "including", "cattiest", "and", "communal", "forces,”", "said", "party", "politburo", "member", "S", "Ramachandran", "Pillai", "in", "Delhi.", "But", "BJP", "has", "slammed", "his", "statement", "saying", "he", "was", "silent", "when", "Centre", "and", "state", "governments", "adopted", "communal-appeasement", "policies.", "“When", "he", "was", "the", "CM", "he", "opposed", "CBI", "probe", "into", "Marad", "massacre", "of", "2002.", "He", "surrendered", "to", "the", "Muslim", "League", "then,”", "BJP", "state", "president", "V", "Muraleedharan", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "india", "Updated:", "Jun", "29,", "2014", "01:31", "IST", "Senior", "Congress", "leader", "AK", "Antony’s", "comment", "on", "dipping", "secular", "credentials", "of", "the", "party", "has", "triggered", "a", "debate", "in", "the", "state.", "The", "former", "defence", "minister", "had", "admitted", "on", "Friday", "that", "his", "party’s", "growing", "proximity", "to", "minority", "communities", "led", "people", "to", "doubt", "its", "secular", "credentials.", "“People", "have", "a", "feeling", "that", "the", "Congress", "bats", "for", "a", "few", "communities,", "especially", "minorities", "in", "Kerala.", "While", "professing", "and", "practising", "secularism", "the", "party", "has", "some", "slants", "that", "all", "sections", "do", "not", "get", "justice.", "This", "has", "to", "be", "removed,”", "he", "said", "raising", "many", "eyebrows.", "“Some", "sections", "of", "society", "have", "an", "impression", "that", "the", "party", "is", "inclined", "to", "certain", "communities", "or", "organisations.", "Congress", "policy", "is", "equal", "justice", "to", "all.", "But", "people", "have", "doubt", "whether", "that", "policy", "is", "being", "implemented", "or", "not,”", "he", "said.", "He", "said", "such", "apprehensions", "would", "open", "the", "door", "for", "communal", "forces", "in", "Kerala,", "known", "for", "its", "amity", "and", "brotherhood.", "The", "CPM", "has", "welcomed", "Antony’s", "‘self-criticism’.", "“What", "he", "said", "is", "right.", "To", "checkmate", "Communism", "the", "party", "is", "of", "late", "embracing", "everyone", "including", "cattiest", "and", "communal", "forces,”", "said", "party", "politburo", "member", "S", "Ramachandran", "Pillai", "in", "Delhi.", "But", "BJP", "has", "slammed", "his", "statement", "saying", "he", "was", "silent", "when", "Centre", "and", "state", "governments", "adopted", "communal-appeasement", "policies.", "“When", "he", "was", "the", "CM", "he", "opposed", "CBI", "probe", "into", "Marad", "massacre", "of", "2002.", "He", "surrendered", "to", "the", "Muslim", "League", "then,”", "BJP", "state", "president", "V", "Muraleedharan", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "yeah,", "if", "you", "could", "know", "your", "address", "before", "calling", "911", "That'd", "be", "great", "233", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "yeah,", "if", "you", "could", "know", "your", "address", "before", "calling", "911", "That'd", "be", "great", "233", "shares" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "I’m", "going", "to", "go", "out", "on", "a", "limb", "and", "say", "that", "unless", "you’ve", "been", "living", "under", "a", "rock,", "you", "probably", "know", "about", "PSY’s", "“Gangnam", "Style”.", "I’m", "also", "going", "to", "take", "a", "wild", "guess", "and", "assume", "that,", "by", "reading", "this", "on", "Soshified,", "you’re", "probably", "a", "Girls’", "Generation", "fan.", "Within", "the", "past", "year,", "SONEs", "celebrated", "the", "girls’", "debut", "in", "the", "United", "States", "and", "swelled", "with", "pride", "after", "their", "appearances", "on", "“Late", "Show", "with", "David", "Letterman”", "and", "“Live!", "With", "Kelly”,", "but", "the", "progress", "into", "the", "Western", "market", "has", "not", "advanced", "since", "those", "landmark", "events", "nearly", "eight", "months", "ago.", "At", "the", "time,", "we", "viewed", "Girls’", "Generation’s", "appearances", "on", "American", "television", "as", "a", "huge", "step", "forward", "in", "K-Pop’s", "seemingly", "inevitable", "advancement", "into", "Western", "markets.", "They", "remain", "historic,", "but", "they", "seem", "like", "tiny", "droplets", "in", "an", "ocean", "compared", "to", "the", "tidal", "wave", "of", "explosive", "popularity", "that", "PSY", "has", "experienced", "with", "“Gangnam", "Style”.", "At", "this", "rate,", "one", "would", "think", "that", "the", "sky", "is", "falling", "for", "Girls’", "Generation’s", "chances", "of", "long-term", "success", "in", "the", "West,", "right?", "Despite", "the", "fact", "that", "PSY’s", "music", "doesn’t", "exactly", "fall", "into", "the", "traditional", "K-Pop", "musical", "mold", "of", "catchy", "repetitive", "hooks", "and", "stunning", "good", "looks,", "he", "managed", "to", "captivate", "America", "and", "the", "entire", "world", "in", "a", "matter", "of", "weeks.", "The", "recent", "“New", "Yorker”", "article", "featuring", "Girls’", "Generation", "even", "suggested", "that", "PSY", "“may", "have", "subverted", "K-pop’s", "chances", "of", "making", "it", "big", "in", "the", "West.”", "With", "all", "of", "these", "things", "in", "mind,", "I", "still", "think", "that", "Girls’", "Generation’s", "chances", "of", "success", "in", "the", "Western", "market", "are", "as", "good", "as", "they", "have", "ever", "been", "and", "that", "they", "could", "even", "be", "better", "after", "the", "unexpected", "popularity", "of", "“Gangnam", "Style”.", "I’ve", "heard", "most", "of", "the", "opinions", "arguing", "that", "“Gangnam", "Style”", "is", "bad", "for", "K-Pop’s", "popularity", "in", "the", "West,", "and", "I", "know", "that", "many", "people", "are", "uneasy", "about", "its", "success.", "I’ve", "heard", "the", "concerns", "about", "Westerners", "only", "caring", "about", "the", "silly", "dance", "or", "that", "the", "stereotypical", "portrayal", "of", "Asians", "is", "bad", "for", "K-Pop.", "The", "counter-argument", "I", "have", "in", "mind", "for", "those", "concerns", "is", "that", "I", "see", "the", "“Gangnam", "Style”", "phenomenon", "as", "an", "opportunity", "to", "insert", "Korea", "and", "its", "culture", "into", "the", "general", "consciousness", "of", "the", "Western", "population.", "For", "a", "large", "number", "of", "people", "in", "the", "West,", "Korea", "is", "still", "somewhat", "of", "a", "mystery.", "The", "history", "of", "the", "Korean", "War", "and", "the", "division", "of", "the", "North", "and", "the", "South", "are", "well-known,", "and", "the", "popularity", "of", "Korean", "electronics", "and", "cars", "has", "been", "on", "the", "rise.", "Despite", "that,", "Korean", "culture", "and", "entertainment", "are,", "to", "a", "significant", "degree,", "an", "unknown", "entity", "to", "the", "rest", "of", "the", "world.", "Most", "Westerners", "don’t", "even", "know", "that", "something", "such", "as", "K-Pop", "or", "Girls’", "Generation", "exists.", "We", "take", "it", "for", "granted", "because,", "as", "SONEs", "and", "K-Pop", "fans,", "we", "are", "exposed", "to", "Korean", "culture", "and", "entertainment", "on", "a", "regular", "basis,", "so", "we", "are", "aware", "of", "what", "Korea", "has", "to", "offer.", "Now,", "the", "general", "population", "in", "the", "West", "also", "knows", "about", "a", "small", "piece", "of", "Korea’s", "rich", "culture,", "but", "there", "is", "so", "much", "room", "for", "expansion.", "PSY", "has", "made", "it", "a", "point", "to", "let", "people", "know", "that", "he", "is", "from", "Korea,", "even", "going", "so", "far", "as", "to", "say", "“대한민국만세”", "(loosely", "translated", "as", "“Korea", "rules”)", "live", "on", "the", "“Today”", "show.", "K-Pop", "fans", "may", "think", "that", "the", "image", "of", "Korea", "and", "K-Pop", "being", "portrayed", "by", "“Gangnam", "Style”", "is", "misguided,", "but", "among", "Western", "audiences", "that", "image", "is", "overwhelmingly", "positive", "at", "the", "moment.", "PSY", "is", "a", "well-educated", "and", "independent-minded", "artist", "whom", "I", "believe", "can", "be", "a", "good", "ambassador", "for", "Korea", "and", "its", "culture.", "It’s", "easier", "for", "him", "to", "connect", "to", "American", "audiences", "because", "he", "attended", "an", "American", "university", "for", "four", "years,", "he", "can", "speak", "relatively", "fluent", "English,", "and", "he", "has", "an", "easygoing", "personality.", "These", "types", "of", "useful", "traits", "also", "apply", "to", "Girls’", "Generation’s", "English-speaking", "members.", "If", "PSY", "is", "able", "to", "help", "build", "the", "image", "of", "Korea", "in", "a", "positive", "manner", "within", "the", "minds", "of", "people", "in", "the", "West,", "I", "only", "see", "it", "as", "a", "beneficial", "situation", "for", "Girls’", "Generation.", "They", "will", "be", "able", "to", "make", "similar", "connections", "with", "English-speaking", "audiences", "because", "of", "Jessica,", "Tiffany,", "and", "the", "other", "members", "who", "have", "surely", "been", "practicing", "their", "English", "skills.", "Think", "of", "the", "cultural-awakening", "experiences", "that", "many", "of", "us", "have", "had", "as", "Girls’", "Generation", "fans.", "Many", "of", "us", "started", "out", "by", "watching", "a", "few", "Girls’", "Generation", "music", "videos", "and/or", "SoShi", "Subs", "videos,", "and", "then", "from", "there,", "everything", "began", "to", "snowball.", "Soon", "enough,", "we", "fell", "in", "love", "with" ], [ "everything", "Korean.", "We", "ended", "up", "wanting", "to", "try", "more", "Korean", "food.", "We", "started", "to", "learn", "more", "about", "Korean", "culture.", "Some", "of", "us", "even", "started", "on", "the", "difficult", "path", "of", "trying", "to", "learn", "the", "Korean", "language.", "Many", "of", "us", "developed", "a", "beautiful", "image", "of", "Korea,", "Korean", "products,", "and", "Korean", "culture", "in", "our", "minds", "because", "of", "Girls’", "Generation.", "Some", "of", "us", "even", "took", "an", "adventurous", "leap", "by", "travelling", "around", "the", "world", "to", "visit", "Korea.", "I", "think", "the", "potential", "is", "there", "for", "this", "same", "effect", "to", "take", "place", "in", "the", "West,", "but", "in", "reverse:", "as", "Korea’s", "reputation", "grows", "and", "becomes", "increasingly", "positive", "and", "popular,", "the", "effect", "of", "Girls’", "Generation", "proudly", "proclaiming", "“We", "are", "from", "Korea”", "will", "begin", "to", "carry", "more", "weight", "and", "draw", "more", "attention.", "If", "Girls’", "Generation’s", "oft-rumored", "English", "album", "eventually", "gets", "made", "and", "released", "and", "it", "turns", "out", "to", "be", "a", "rousing", "success,", "that", "will", "only", "reinforce", "the", "notion", "that", "Korea’s", "culture", "and", "entertainment", "deserve", "the", "attention", "and", "praise", "that", "we’ve", "been", "giving", "it", "for", "years.", "I’m", "not", "without", "my", "concerns", "in", "all", "of", "this.", "I", "hope", "that", "Girls’", "Generation", "doesn’t", "Americanize", "their", "own", "style", "to", "fit", "the", "Western", "audience,", "and", "I", "want", "them", "to", "be", "able", "to", "say,", "“Yes,", "we", "are", "a", "Korean", "pop", "girl", "group,", "and", "this", "is", "our", "distinctive", "style.”", "With", "new", "Japanese", "and", "Korean", "singles", "and", "albums", "around", "the", "corner,", "it’s", "unclear", "when", "the", "next", "step", "in", "their", "attempt", "to", "conquer", "the", "United", "States", "will", "occur.", "I,", "for", "one,", "hope", "that", "whenever", "Girls’", "Generation", "takes", "that", "next", "step,", "they", "will", "benefit", "from", "the", "brighter", "spotlight", "on", "Korean", "culture", "and", "entertainment", "that", "I", "think", "PSY", "can", "create,", "and", "I’m", "confident", "that", "the", "girls", "themselves", "will", "also", "contribute", "to", "and", "benefit", "from", "Korea’s", "cultural", "expansion.", "Disclaimer:", "Views", "expressed", "are", "solely", "those", "of", "the", "author", "and", "are", "not", "representative", "of", "the", "Soshified", "community", "as", "a", "whole.", "Written", "by:", "cucumberoni@soshified", "Edited", "by:", "residentbenchwarmer@soshified,", "taengsoshi@soshified,", "bhost909@soshified,", "Akino_Makoto@soshified,", "MoonSoshi9@soshified", "Have", "a", "news", "item", "that", "you", "think", "Soshified", "should", "know", "about?", "Leave", "us", "a", "tip", "or", "e-mail", "us", "at", "[email protected].", "Follow", "us", "on", "Twitter:", "http://twitter.com/soshified", "for", "the", "latest", "on", "Girls’", "Generation." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "I’m", "going", "to", "go", "out", "on", "a", "limb", "and", "say", "that", "unless", "you’ve", "been", "living", "under", "a", "rock,", "you", "probably", "know", "about", "PSY’s", "“Gangnam", "Style”.", "I’m", "also", "going", "to", "take", "a", "wild", "guess", "and", "assume", "that,", "by", "reading", "this", "on", "Soshified,", "you’re", "probably", "a", "Girls’", "Generation", "fan.", "Within", "the", "past", "year,", "SONEs", "celebrated", "the", "girls’", "debut", "in", "the", "United", "States", "and", "swelled", "with", "pride", "after", "their", "appearances", "on", "“Late", "Show", "with", "David", "Letterman”", "and", "“Live!", "With", "Kelly”,", "but", "the", "progress", "into", "the", "Western", "market", "has", "not", "advanced", "since", "those", "landmark", "events", "nearly", "eight", "months", "ago.", "At", "the", "time,", "we", "viewed", "Girls’", "Generation’s", "appearances", "on", "American", "television", "as", "a", "huge", "step", "forward", "in", "K-Pop’s", "seemingly", "inevitable", "advancement", "into", "Western", "markets.", "They", "remain", "historic,", "but", "they", "seem", "like", "tiny", "droplets", "in", "an", "ocean", "compared", "to", "the", "tidal", "wave", "of", "explosive", "popularity", "that", "PSY", "has", "experienced", "with", "“Gangnam", "Style”.", "At", "this", "rate,", "one", "would", "think", "that", "the", "sky", "is", "falling", "for", "Girls’", "Generation’s", "chances", "of", "long-term", "success", "in", "the", "West,", "right?", "Despite", "the", "fact", "that", "PSY’s", "music", "doesn’t", "exactly", "fall", "into", "the", "traditional", "K-Pop", "musical", "mold", "of", "catchy", "repetitive", "hooks", "and", "stunning", "good", "looks,", "he", "managed", "to", "captivate", "America", "and", "the", "entire", "world", "in", "a", "matter", "of", "weeks.", "The", "recent", "“New", "Yorker”", "article", "featuring", "Girls’", "Generation", "even", "suggested", "that", "PSY", "“may", "have", "subverted", "K-pop’s", "chances", "of", "making", "it", "big", "in", "the", "West.”", "With", "all", "of", "these", "things", "in", "mind,", "I", "still", "think", "that", "Girls’", "Generation’s", "chances", "of", "success", "in", "the", "Western", "market", "are", "as", "good", "as", "they", "have", "ever", "been", "and", "that", "they", "could", "even", "be", "better", "after", "the", "unexpected", "popularity", "of", "“Gangnam", "Style”.", "I’ve", "heard", "most", "of", "the", "opinions", "arguing", "that", "“Gangnam", "Style”", "is", "bad", "for", "K-Pop’s", "popularity", "in", "the", "West,", "and", "I", "know", "that", "many", "people", "are", "uneasy", "about", "its", "success.", "I’ve", "heard", "the", "concerns", "about", "Westerners", "only", "caring", "about", "the", "silly", "dance", "or", "that", "the", "stereotypical", "portrayal", "of", "Asians", "is", "bad", "for", "K-Pop.", "The", "counter-argument", "I", "have", "in", "mind", "for", "those", "concerns", "is", "that", "I", "see", "the", "“Gangnam", "Style”", "phenomenon", "as", "an", "opportunity", "to", "insert", "Korea", "and", "its", "culture", "into", "the", "general", "consciousness", "of", "the", "Western", "population.", "For", "a", "large", "number", "of", "people", "in", "the", "West,", "Korea", "is", "still", "somewhat", "of", "a", "mystery.", "The", "history", "of", "the", "Korean", "War", "and", "the", "division", "of", "the", "North", "and", "the", "South", "are", "well-known,", "and", "the", "popularity", "of", "Korean", "electronics", "and", "cars", "has", "been", "on", "the", "rise.", "Despite", "that,", "Korean", "culture", "and", "entertainment", "are,", "to", "a", "significant", "degree,", "an", "unknown", "entity", "to", "the", "rest", "of", "the", "world.", "Most", "Westerners", "don’t", "even", "know", "that", "something", "such", "as", "K-Pop", "or", "Girls’", "Generation", "exists.", "We", "take", "it", "for", "granted", "because,", "as", "SONEs", "and", "K-Pop", "fans,", "we", "are", "exposed", "to", "Korean", "culture", "and", "entertainment", "on", "a", "regular", "basis,", "so", "we", "are", "aware", "of", "what", "Korea", "has", "to", "offer.", "Now,", "the", "general", "population", "in", "the", "West", "also", "knows", "about", "a", "small", "piece", "of", "Korea’s", "rich", "culture,", "but", "there", "is", "so", "much", "room", "for", "expansion.", "PSY", "has", "made", "it", "a", "point", "to", "let", "people", "know", "that", "he", "is", "from", "Korea,", "even", "going", "so", "far", "as", "to", "say", "“대한민국만세”", "(loosely", "translated", "as", "“Korea", "rules”)", "live", "on", "the", "“Today”", "show.", "K-Pop", "fans", "may", "think", "that", "the", "image", "of", "Korea", "and", "K-Pop", "being", "portrayed", "by", "“Gangnam", "Style”", "is", "misguided,", "but", "among", "Western", "audiences", "that", "image", "is", "overwhelmingly", "positive", "at", "the", "moment.", "PSY", "is", "a", "well-educated", "and", "independent-minded", "artist", "whom", "I", "believe", "can", "be", "a", "good", "ambassador", "for", "Korea", "and", "its", "culture.", "It’s", "easier", "for", "him", "to", "connect", "to", "American", "audiences", "because", "he", "attended", "an", "American", "university", "for", "four", "years,", "he", "can", "speak", "relatively", "fluent", "English,", "and", "he", "has", "an", "easygoing", "personality.", "These", "types", "of", "useful", "traits", "also", "apply", "to", "Girls’", "Generation’s", "English-speaking", "members.", "If", "PSY", "is", "able", "to", "help", "build", "the", "image", "of", "Korea", "in", "a", "positive", "manner", "within", "the", "minds", "of", "people", "in", "the", "West,", "I", "only", "see", "it", "as", "a", "beneficial", "situation", "for", "Girls’", "Generation.", "They", "will", "be", "able", "to", "make", "similar", "connections", "with", "English-speaking", "audiences", "because", "of", "Jessica,", "Tiffany,", "and", "the", "other", "members", "who", "have", "surely", "been", "practicing", "their", "English", "skills.", "Think", "of", "the", "cultural-awakening", "experiences", "that", "many", "of", "us", "have", "had", "as", "Girls’", "Generation", "fans.", "Many", "of", "us", "started", "out", "by", "watching", "a", "few", "Girls’", "Generation", "music", "videos", "and/or", "SoShi", "Subs", "videos,", "and", "then", "from", "there,", "everything", "began", "to", "snowball.", "Soon", "enough,", "we", "fell", "in", "love", "with" ] ], [ [ "everything", "Korean.", "We", "ended", "up", "wanting", "to", "try", "more", "Korean", "food.", "We", "started", "to", "learn", "more", "about", "Korean", "culture.", "Some", "of", "us", "even", "started", "on", "the", "difficult", "path", "of", "trying", "to", "learn", "the", "Korean", "language.", "Many", "of", "us", "developed", "a", "beautiful", "image", "of", "Korea,", "Korean", "products,", "and", "Korean", "culture", "in", "our", "minds", "because", "of", "Girls’", "Generation.", "Some", "of", "us", "even", "took", "an", "adventurous", "leap", "by", "travelling", "around", "the", "world", "to", "visit", "Korea.", "I", "think", "the", "potential", "is", "there", "for", "this", "same", "effect", "to", "take", "place", "in", "the", "West,", "but", "in", "reverse:", "as", "Korea’s", "reputation", "grows", "and", "becomes", "increasingly", "positive", "and", "popular,", "the", "effect", "of", "Girls’", "Generation", "proudly", "proclaiming", "“We", "are", "from", "Korea”", "will", "begin", "to", "carry", "more", "weight", "and", "draw", "more", "attention.", "If", "Girls’", "Generation’s", "oft-rumored", "English", "album", "eventually", "gets", "made", "and", "released", "and", "it", "turns", "out", "to", "be", "a", "rousing", "success,", "that", "will", "only", "reinforce", "the", "notion", "that", "Korea’s", "culture", "and", "entertainment", "deserve", "the", "attention", "and", "praise", "that", "we’ve", "been", "giving", "it", "for", "years.", "I’m", "not", "without", "my", "concerns", "in", "all", "of", "this.", "I", "hope", "that", "Girls’", "Generation", "doesn’t", "Americanize", "their", "own", "style", "to", "fit", "the", "Western", "audience,", "and", "I", "want", "them", "to", "be", "able", "to", "say,", "“Yes,", "we", "are", "a", "Korean", "pop", "girl", "group,", "and", "this", "is", "our", "distinctive", "style.”", "With", "new", "Japanese", "and", "Korean", "singles", "and", "albums", "around", "the", "corner,", "it’s", "unclear", "when", "the", "next", "step", "in", "their", "attempt", "to", "conquer", "the", "United", "States", "will", "occur.", "I,", "for", "one,", "hope", "that", "whenever", "Girls’", "Generation", "takes", "that", "next", "step,", "they", "will", "benefit", "from", "the", "brighter", "spotlight", "on", "Korean", "culture", "and", "entertainment", "that", "I", "think", "PSY", "can", "create,", "and", "I’m", "confident", "that", "the", "girls", "themselves", "will", "also", "contribute", "to", "and", "benefit", "from", "Korea’s", "cultural", "expansion.", "Disclaimer:", "Views", "expressed", "are", "solely", "those", "of", "the", "author", "and", "are", "not", "representative", "of", "the", "Soshified", "community", "as", "a", "whole.", "Written", "by:", "cucumberoni@soshified", "Edited", "by:", "residentbenchwarmer@soshified,", "taengsoshi@soshified,", "bhost909@soshified,", "Akino_Makoto@soshified,", "MoonSoshi9@soshified", "Have", "a", "news", "item", "that", "you", "think", "Soshified", "should", "know", "about?", "Leave", "us", "a", "tip", "or", "e-mail", "us", "at", "[email protected].", "Follow", "us", "on", "Twitter:", "http://twitter.com/soshified", "for", "the", "latest", "on", "Girls’", "Generation." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Senate", "Minority", "Leader", "Charles", "Schumer", "(D-N.Y.)", "said", "on", "Monday", "that", "he", "will", "name", "Bharat", "Ramamurti,", "a", "former", "aide", "to", "Sen.", "Elizabeth", "Warren", "Elizabeth", "WarrenWarren,", "Schumer", "introduce", "plan", "for", "next", "president", "to", "cancel,000", "in", "student", "debt", "The", "Hill's", "12:30", "Report", "-", "Presented", "by", "Facebook", "-", "Don't", "expect", "a", "government", "check", "anytime", "soon", "No", "new", "taxes", "for", "the", "ultra", "rich", "—", "fix", "bad", "tax", "policy", "instead", "MORE", "(D-Mass.),", "to", "serve", "on", "a", "five-person", "board", "that", "will", "oversee", "corporate", "loans", "under", "the", "coronavirus", "relief", "package.", "Schumer,", "talking", "to", "reporters", "on", "a", "conference", "call,", "said", "the", "former", "Warren", "staffer", "had", "shown", "that", "he", "was", "\"ferocious", "in", "his", "desire", "to", "protect", "the", "public", "from", "abuse.\"", "\"He's", "had", "a", "great", "deal", "of", "experience", "in", "these", "areas.", "He", "understands", "how", "finance", "works....", "He", "has", "a", "great", "nose", "for", "figuring", "out", "when", "there's", "wrongdoing,\"", "Schumer", "told", "reporters.", "ADVERTISEMENT", "Schumer", "noted", "that", "Ramamurti", "previously", "worked", "as", "Warren's", "senior", "counsel", "for", "banking", "and", "economics", "and", "also", "worked", "as", "an", "economic", "adviser", "for", "her", "2020", "presidential", "campaign.", "Lawmakers", "established", "the", "five-person", "congressional", "oversight", "commission", "as", "part", "of", "their", "deal", "on", "the", "massive", "$2.2", "trillion", "coronavirus", "relief", "package", "passed", "by", "Congress", "late", "last", "month.", "The", "panel", "is", "charged", "with", "monitoring", "the", "Treasury", "Department", "and", "Federal", "Reserve's", "handling", "of", "the", "$500", "billion", "in", "aid", "to", "impacted", "industries", "like", "airlines", "included", "in", "the", "bill.", "According", "to", "the", "bill,", "each", "of", "the", "four", "congressional", "leaders", "will", "appoint", "one", "member.", "House", "Speaker", "Nancy", "Pelosi", "(D-Calif.)", "and", "Senate", "Majority", "Leader", "Mitch", "McConnell", "Addison", "(Mitch)", "Mitchell", "McConnellMcConnell", "focuses", "on", "confirming", "judicial", "nominees", "with", "COVID-19", "talks", "stalled", "McConnell", "accuses", "Democrats", "of", "sowing", "division", "by", "'downplaying", "progress'", "on", "election", "security", "Warren,", "Schumer", "introduce", "plan", "for", "next", "president", "to", "cancel,000", "in", "student", "debt", "MORE", "(R-Ky.)", "would", "then", "jointly", "appoint", "the", "fifth", "member.", "No", "other", "appointment", "announcements", "have", "yet", "been", "made.", "Pelosi", "noted", "on", "Friday", "that", "she", "and", "McConnell", "spoke", "late", "last", "week", "about", "the", "oversight", "commission.", "\"I", "spoke", "to", "Mitch", "about", "that", "because", "he", "and", "I", "have", "to", "agree", "on", "who", "that", "fifth", "person", "is.", "And", "we", "set", "sort", "of", "our", "criteria", "as", "to", "how", "that", "would", "be.", "He", "gave", "me", "a", "name,", "not", "a", "name", "but", "an", "impression", "about", "who", "he", "might", "do", "for", "his", "one.", "So", "we've", "had", "those", "conversations,\"", "she", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Senate", "Minority", "Leader", "Charles", "Schumer", "(D-N.Y.)", "said", "on", "Monday", "that", "he", "will", "name", "Bharat", "Ramamurti,", "a", "former", "aide", "to", "Sen.", "Elizabeth", "Warren", "Elizabeth", "WarrenWarren,", "Schumer", "introduce", "plan", "for", "next", "president", "to", "cancel,000", "in", "student", "debt", "The", "Hill's", "12:30", "Report", "-", "Presented", "by", "Facebook", "-", "Don't", "expect", "a", "government", "check", "anytime", "soon", "No", "new", "taxes", "for", "the", "ultra", "rich", "—", "fix", "bad", "tax", "policy", "instead", "MORE", "(D-Mass.),", "to", "serve", "on", "a", "five-person", "board", "that", "will", "oversee", "corporate", "loans", "under", "the", "coronavirus", "relief", "package.", "Schumer,", "talking", "to", "reporters", "on", "a", "conference", "call,", "said", "the", "former", "Warren", "staffer", "had", "shown", "that", "he", "was", "\"ferocious", "in", "his", "desire", "to", "protect", "the", "public", "from", "abuse.\"", "\"He's", "had", "a", "great", "deal", "of", "experience", "in", "these", "areas.", "He", "understands", "how", "finance", "works....", "He", "has", "a", "great", "nose", "for", "figuring", "out", "when", "there's", "wrongdoing,\"", "Schumer", "told", "reporters.", "ADVERTISEMENT", "Schumer", "noted", "that", "Ramamurti", "previously", "worked", "as", "Warren's", "senior", "counsel", "for", "banking", "and", "economics", "and", "also", "worked", "as", "an", "economic", "adviser", "for", "her", "2020", "presidential", "campaign.", "Lawmakers", "established", "the", "five-person", "congressional", "oversight", "commission", "as", "part", "of", "their", "deal", "on", "the", "massive", "$2.2", "trillion", "coronavirus", "relief", "package", "passed", "by", "Congress", "late", "last", "month.", "The", "panel", "is", "charged", "with", "monitoring", "the", "Treasury", "Department", "and", "Federal", "Reserve's", "handling", "of", "the", "$500", "billion", "in", "aid", "to", "impacted", "industries", "like", "airlines", "included", "in", "the", "bill.", "According", "to", "the", "bill,", "each", "of", "the", "four", "congressional", "leaders", "will", "appoint", "one", "member.", "House", "Speaker", "Nancy", "Pelosi", "(D-Calif.)", "and", "Senate", "Majority", "Leader", "Mitch", "McConnell", "Addison", "(Mitch)", "Mitchell", "McConnellMcConnell", "focuses", "on", "confirming", "judicial", "nominees", "with", "COVID-19", "talks", "stalled", "McConnell", "accuses", "Democrats", "of", "sowing", "division", "by", "'downplaying", "progress'", "on", "election", "security", "Warren,", "Schumer", "introduce", "plan", "for", "next", "president", "to", "cancel,000", "in", "student", "debt", "MORE", "(R-Ky.)", "would", "then", "jointly", "appoint", "the", "fifth", "member.", "No", "other", "appointment", "announcements", "have", "yet", "been", "made.", "Pelosi", "noted", "on", "Friday", "that", "she", "and", "McConnell", "spoke", "late", "last", "week", "about", "the", "oversight", "commission.", "\"I", "spoke", "to", "Mitch", "about", "that", "because", "he", "and", "I", "have", "to", "agree", "on", "who", "that", "fifth", "person", "is.", "And", "we", "set", "sort", "of", "our", "criteria", "as", "to", "how", "that", "would", "be.", "He", "gave", "me", "a", "name,", "not", "a", "name", "but", "an", "impression", "about", "who", "he", "might", "do", "for", "his", "one.", "So", "we've", "had", "those", "conversations,\"", "she", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "I", "sometimes", "have", "a", "feeling", "I", "could", "post", "on", "r/atheism", "but", "then", "I", "\"think", "mmmm", "better", "not.\"", "318", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "I", "sometimes", "have", "a", "feeling", "I", "could", "post", "on", "r/atheism", "but", "then", "I", "\"think", "mmmm", "better", "not.\"", "318", "shares" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Olin", "eilen", "Ajankohtaisen", "Kakkosen", "A2", "-illassa", "riitelemässä.", "Oli", "mielenkiintoinen", "kokemus.", "Keskustelimme", "yrittämisestä.", "Siinä", "kävi", "juuri", "kuten", "pelkäsin.", "Suurin", "osa", "ohjelmasta", "käytettiin", "valittamiseen,", "kuinka", "Suomessa", "on", "niin", "vaikea", "yrittää.", "Verot", "ovat", "liian", "kovia,", "työntekijöitä", "ei", "voi", "palkata", "ja", "sääntely", "tappaa.", "Mikään", "noista", "asioista", "ei", "ole", "totta.", "Paitsi", "yrittäjän", "mielestä,", "sillä", "olisihan", "se", "hauskaa,", "jos", "voitot", "jäisivät", "täysimääräisinä", "taskuun,", "irtisanominen", "olisi", "pelkkä", "nopea", "muodollisuus,", "eikä", "kukaan", "hengittäisi", "niskaan", "kysellen", "lupia", "ja", "viranomainenkin", "olisi", "pelkästään", "rahantekoon", "kannustava", "ystävä.", "Kun", "ruikutuslaulu", "oli", "jatkunut", "puolisen", "tuntia,", "oli", "pakko", "sanoa", "jotain", "vastaan.", "Puolustin", "hyvinvointivaltiota", "ja", "yritin", "perustella,", "miksi", "Viron", "verotusmalli", "ei", "sovi", "suomalaiseen", "–", "ainakin", "idealtaan", "ihanaan", "–", "hyvinvointivaltioon.", "Ja", "saavutin", "tavoitteeni.", "Minusta", "tehtiin", "meemi.", "Se", "on", "ehkä", "parasta,", "mitä", "A2-iltaan", "osallistumisella", "voi", "saavuttaa.", "En", "oikeasti", "halua", "kuulua", "yrittäjäjengiin,", "jonka", "mielestä", "Suomi", "saadaan", "nousuun", "vain", "yrittäjien", "velvollisuuksia", "karsimalla.", "Hyvinvointivaltion", "puolustus", "on", "minulle", "ja", "firmalleni", "yksi", "tärkeimmistä", "arvoista.", "Haluamme", "maksaa", "veroja.", "On", "meillä", "muitakin", "arvoja,", "jotka", "ärsyttävät", "monia.", "Inhoamme", "piilotettua", "rakenteellista", "ankeutusvaltaa,", "jota", "tässä", "maassa", "riittää", "vanhojen", "miesten", "linnakkeissa,", "rakastamme", "Suomea", "olematta", "pätkääkään", "patrioottisia,", "tuemme", "–", "tietysti", "–", "seksuaalivähemmistöjen", "oikeuksia", "ja", "vihaamme", "valheellisuutta,", "joka", "näkyy", "esimerkiksi", "yritysviestinnässä.", "Jos", "on", "jotain", "mieltä", "oikeasti,", "pyllistää", "aina", "johonkin", "suuntaan.", "Talouselämä", "ei", "ole", "moraalista", "vapaa", "raha-alue.", "Myös", "yritykset", "saavat", "olla", "asioista", "jotain", "mieltä.", "Ja", "kun", "on", "vahva", "mielipide,", "joku", "toinen", "on", "kanssasi", "eri", "mieltä.", "Yritysten", "arvot", "ovat", "yleensä", "liian", "kilttejä,", "liukkaita", "ja", "mitäänsanomattomia.", "Halutaan", "pitää", "työntekijöistä", "huolta,", "keskittyä", "asiakkaan", "palvelemiseen", "ja", "moni", "sanoo", "myös", "ympäristöstä", "huolehtimisen", "olevan", "tärkeää.", "Jaa.", "Ihan", "kiva.", "Kertokaa", "kun", "voi", "taas", "herätä.", "Ei", "voi", "väittää", "vastaan.", "Ei", "voi", "tuntea", "mitään.", "Lista", "on", "turha,", "sillä", "siitä", "saa", "kukaan", "kiinni.", "Yrityselämässä", "usein", "todetaan,", "että", "”raha", "ei", "haise”.", "Haiseehan.", "Jos", "firma", "täyttää", "tilinsä", "tekemällä", "moraalinsa", "vastaisia", "asioita,", "haju", "tarttuu.", "Jos", "yrity" ], [ "ksen", "edustaja", "on", "hiljaa", "silloin", "kun", "pitäisi", "nousta", "vääryyttä", "vastaan,", "on", "hän", "omatuntonsa", "turruttanut", "taukki.", "Nöyrää", "kohteliaisuutta", "hokevat", "tapakouluttajat", "ovat", "siis", "väärässä.", "Ei", "vaikeita", "asioita", "ja", "keskustelunaiheita", "saa", "välttää.", "Pitää", "tapella.", "Ja", "olla", "jotain", "mieltä." ] ]
[ [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "it", "nl", "ro", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "it", "it", "it", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "it", "it", "it", "it", "nl", "nl", "nl", "nl", "co", "co", "co", "co", "it", "it", "it", "it", "it", "it", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "pt", "pt", "pt", "en", "en", "en", "en", "en", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "ro", "ro", "ro", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "co", "co", "co", "co" ], [ "de", "nl", "nl", "nl", "fr", "fr", "fr", "nl", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "de" ] ]
[ [ [ "Olin", "eilen", "Ajankohtaisen", "Kakkosen", "A2", "-illassa", "riitelemässä.", "Oli", "mielenkiintoinen", "kokemus.", "Keskustelimme", "yrittämisestä.", "Siinä", "kävi", "juuri", "kuten", "pelkäsin.", "Suurin", "osa", "ohjelmasta", "käytettiin", "valittamiseen,", "kuinka", "Suomessa", "on", "niin", "vaikea", "yrittää.", "Verot", "ovat", "liian", "kovia,", "työntekijöitä", "ei", "voi", "palkata", "ja", "sääntely", "tappaa.", "Mikään", "noista", "asioista", "ei", "ole", "totta.", "Paitsi", "yrittäjän", "mielestä,", "sillä", "olisihan", "se", "hauskaa,", "jos", "voitot", "jäisivät", "täysimääräisinä", "taskuun,", "irtisanominen", "olisi", "pelkkä", "nopea", "muodollisuus,", "eikä", "kukaan", "hengittäisi", "niskaan", "kysellen", "lupia", "ja", "viranomainenkin", "olisi", "pelkästään", "rahantekoon", "kannustava", "ystävä.", "Kun", "ruikutuslaulu", "oli", "jatkunut", "puolisen", "tuntia,", "oli", "pakko", "sanoa", "jotain", "vastaan.", "Puolustin", "hyvinvointivaltiota", "ja", "yritin", "perustella,", "miksi", "Viron", "verotusmalli", "ei", "sovi", "suomalaiseen", "–", "ainakin", "idealtaan", "ihanaan", "–", "hyvinvointivaltioon.", "Ja", "saavutin", "tavoitteeni.", "Minusta", "tehtiin", "meemi.", "Se", "on", "ehkä", "parasta,", "mitä", "A2-iltaan", "osallistumisella", "voi", "saavuttaa.", "En", "oikeasti", "halua", "kuulua", "yrittäjäjengiin,", "jonka", "mielestä", "Suomi", "saadaan", "nousuun", "vain", "yrittäjien", "velvollisuuksia", "karsimalla.", "Hyvinvointivaltion", "puolustus", "on", "minulle", "ja", "firmalleni", "yksi", "tärkeimmistä", "arvoista.", "Haluamme", "maksaa", "veroja.", "On", "meillä", "muitakin", "arvoja,", "jotka", "ärsyttävät", "monia.", "Inhoamme", "piilotettua", "rakenteellista", "ankeutusvaltaa,", "jota", "tässä", "maassa", "riittää", "vanhojen", "miesten", "linnakkeissa,", "rakastamme", "Suomea", "olematta", "pätkääkään", "patrioottisia,", "tuemme", "–", "tietysti", "–", "seksuaalivähemmistöjen", "oikeuksia", "ja", "vihaamme", "valheellisuutta,", "joka", "näkyy", "esimerkiksi", "yritysviestinnässä.", "Jos", "on", "jotain", "mieltä", "oikeasti,", "pyllistää", "aina", "johonkin", "suuntaan.", "Talouselämä", "ei", "ole", "moraalista", "vapaa", "raha-alue.", "Myös", "yritykset", "saavat", "olla", "asioista", "jotain", "mieltä.", "Ja", "kun", "on", "vahva", "mielipide,", "joku", "toinen", "on", "kanssasi", "eri", "mieltä.", "Yritysten", "arvot", "ovat", "yleensä", "liian", "kilttejä,", "liukkaita", "ja", "mitäänsanomattomia.", "Halutaan", "pitää", "työntekijöistä", "huolta,", "keskittyä", "asiakkaan", "palvelemiseen", "ja", "moni", "sanoo", "myös", "ympäristöstä", "huolehtimisen", "olevan", "tärkeää.", "Jaa.", "Ihan", "kiva.", "Kertokaa", "kun", "voi", "taas", "herätä.", "Ei", "voi", "väittää", "vastaan.", "Ei", "voi", "tuntea", "mitään.", "Lista", "on", "turha,", "sillä", "siitä", "saa", "kukaan", "kiinni.", "Yrityselämässä", "usein", "todetaan,", "että", "”raha", "ei", "haise”.", "Haiseehan.", "Jos", "firma", "täyttää", "tilinsä", "tekemällä", "moraalinsa", "vastaisia", "asioita,", "haju", "tarttuu.", "Jos", "yrity" ] ], [ [ "ksen", "edustaja", "on", "hiljaa", "silloin", "kun", "pitäisi", "nousta", "vääryyttä", "vastaan,", "on", "hän", "omatuntonsa", "turruttanut", "taukki.", "Nöyrää", "kohteliaisuutta", "hokevat", "tapakouluttajat", "ovat", "siis", "väärässä.", "Ei", "vaikeita", "asioita", "ja", "keskustelunaiheita", "saa", "välttää.", "Pitää", "tapella.", "Ja", "olla", "jotain", "mieltä." ] ] ]
[ [ "de" ], [ "de" ] ]
[ "mono", "mono", "mono" ]
[ [ "Jay", "Timmons", "(left)", "and", "Rick", "Olson", "hold", "their", "son,", "Jacob", "Timmons,", "on", "Friday", "at", "their", "home", "in", "McLean,", "Va.", "Credit:", "Amanda", "Voisard", "Jay", "Timmons", "and", "Rick", "Olson", "expected", "little", "legal", "trouble", "when", "they", "filed", "papers", "in", "Dane", "County", "Circuit", "Court", "last", "year", "to", "become", "the", "fathers", "of", "a", "son", "through", "a", "surrogate", "mother", "in", "Wisconsin.", "They", "had", "good", "jobs", "—", "Timmons,", "54,", "was", "the", "head", "of", "the", "pro-business", "National", "Association", "of", "Manufacturers,", "and", "Olson,", "49,", "was", "a", "federal", "lobbyist", "for", "Capital", "One.", "They", "were", "married", "in", "2008", "and", "have", "been", "together", "for", "25", "years.", "They", "also", "had", "two", "daughters", "through", "surrogacy.", "They", "had", "more", "than", "150", "letters", "of", "recommendation.", "And", "Wisconsin", "courts", "tend", "to", "rubber-stamp", "these", "lightly", "regulated", "arrangements,", "especially", "when", "no", "one", "is", "contesting", "the", "matter,", "as", "was", "the", "case", "here.", "But", "that", "didn't", "happen.", "Timmons", "and", "Olson", "were", "plunged", "into", "a", "yearlong", "legal", "morass", "that", "has", "cost", "them", "$400,000", "in", "legal", "expenses", "—", "on", "top", "of", "the", "$35,000", "they", "paid", "the", "surrogate", "mother", "and", "$12,500", "to", "a", "surrogacy", "agency.", "Olson", "even", "had", "to", "quit", "his", "job", "to", "take", "up", "the", "legal", "case", "full", "time.", "Then-Dane", "County", "Circuit", "Judge", "James", "Troupis", "appointed", "a", "guardian", "ad", "litem", "who", "billed", "the", "couple", "an", "astounding", "$100,000", "while", "preparing", "a", "report", "and", "brief", "that", "called", "into", "question", "changes", "in", "the", "traditional", "family", "structure.", "The", "report", "concluded", "that", "it", "was", "in", "the", "child's", "best", "interest", "that", "Timmons", "and", "Olson", "become", "his", "legal", "parents", "—", "but", "urged", "Troupis", "to", "reject", "their", "surrogacy", "agreement", "on", "legal", "grounds.", "Troupis", "then", "issued", "a", "decision", "stripping", "the", "surrogate", "mother", "of", "her", "parental", "rights", "and", "denying", "Timmons", "and", "Olson", "parentage.", "That", "rendered", "the", "then-7-month-old", "boy", "an", "orphan.", "In", "his", "21-page", "ruling,", "Troupis", "adopted", "often-polemical", "language", "to", "criticize", "surrogacy,", "even", "though", "it's", "not", "illegal", "under", "state", "law.", "He", "referred", "to", "the", "surrogate", "mother", "as", "a", "\"womb,\"", "labeled", "the", "frozen", "embryo", "a", "\"child\"", "and", "said", "the", "two", "fathers", "were", "seeking", "\"ownership\"", "of", "the", "child.", "\"Human", "trafficking", "comes", "in", "many", "forms,\"", "Troupis", "wrote", "in", "the", "opening", "sentence", "of", "his", "March", "25", "decision.", "\"The", "child", "here", "was", "a", "gift", "from", "another", "couple,", "made", "possible", "by", "payment", "to", "an", "agency", "and", "to", "a", "mother,\"", "Troupis", "wrote", "later", "in", "his", "ruling.", "\"Can", "any", "such", "agreement", "be", "made", "without", "violating", "human", "trafficking", "laws?\"", "The", "case", "has", "taken", "several", "turns", "since", "that", "decision", "was", "handed", "down.", "Troupis", "is", "no", "longer", "on", "the", "bench,", "having", "resigned", "less", "than", "a", "year", "after", "being", "appointed", "by", "Gov.", "Scott", "Walker.", "He", "recently", "failed", "in", "his", "bid", "to", "land", "a", "seat", "on", "the", "state", "Supreme", "Court.", "Another", "Dane", "County", "judge", "has", "reversed", "Troupis'", "ruling,", "calling", "it", "\"unduly", "harsh,\"", "\"weird\"", "and", "\"faulty\"", "for", "ignoring", "a", "recent", "state", "Supreme", "Court", "decision", "that", "he", "said", "found", "surrogacy", "arrangements", "are", "valid", "as", "long", "as", "they", "are", "in", "the", "best", "interests", "of", "the", "child.", "And", "Timmons", "and", "Olson", "now", "have", "their", "son,", "Jacob,", "who", "will", "turn", "1", "on", "Aug.", "17.", "But", "the", "pair,", "who", "live", "in", "McLean,", "Va.,", "are", "still", "stinging", "from", "the", "entire", "experience", "at", "the", "hands", "of", "the", "Wisconsin", "judicial", "system.", "\"If", "we", "don't", "speak", "up", "about", "this,", "there's", "going", "to", "be", "another", "judge", "that", "tries", "the", "same", "thing,\"", "Olson", "said.", "\"This", "hopefully", "will", "put", "judges", "in", "check,\"", "Timmons", "said.", "\"They", "need", "to", "understand", "that", "they", "have", "one", "job,", "and", "that's", "to", "apply", "the", "law.", "\"It", "is", "never", "in", "the", "best", "interest", "of", "a", "child", "to", "proactively", "and", "knowingly", "make", "the", "child", "an", "orphan.\"", "Troupis,", "who", "has", "returned", "to", "private", "practice,", "declined", "to", "discuss", "the", "case", "last", "week.", "\"As", "a", "judge,", "I", "cannot", "as", "an", "ethical", "matter", "comment", "on", "a", "matter", "that", "was", "before", "me", "that", "remains", "pending,\"", "said", "Troupis,", "long", "a", "force", "in", "Republican", "circles.", "The", "guardian", "ad", "litem,", "Mark", "Knutson", "of", "Brookfield,", "also", "refused", "to", "comment.", "\"Because", "the", "nature", "of", "this", "case,", "i.e.", "confidential,", "and", "my", "ethical", "responsibilities,", "I", "am", "not", "at", "liberty", "to", "comment,\"", "Knutson", "wrote", "in", "an", "email.", "The", "records", "in", "the", "case", "are", "not", "public", "but", "were", "provided", "to", "the", "Milwaukee", "Journal", "Sentinel", "by", "sources", "not", "directly", "involved", "in", "the", "legal", "dispute.", "Timmons", "and", "Olson", "ended", "up", "in", "Wisconsin", "through", "a", "circuitous", "route.", "Nearly", "three", "years", "ago,", "they", "were", "offered", "two", "frozen", "embryos", "from", "a", "heterosexual", "couple", "as", "a", "gift.", "The", "couple", "needed", "to", "use", "in", "vitro", "fertilization", "to", "have", "their", "four", "children", "but", "were", "left", "with", "two", "unused", "embryos,", "which", "they", "didn't", "want", "to", "destroy.", "Timmons", "and", "Olson", "already", "had", "two", "daughters,", "who", "are", "now", "5", "and", "6.", "\"They", "had", "gotten", "to", "see", "us", "with", "our", "daughters", "and", "how", "we" ], [ "were", "raising", "them,\"", "Timmons", "said.", "\"They", "asked", "us", "if", "we", "would", "take", "the", "embryos", "and", "raise", "them", "as", "our", "children.", "We", "accepted", "the", "offer.\"", "Before", "moving", "forward,", "however,", "Timmons", "and", "Olson", "spent", "nearly", "a", "year", "researching", "surrogacy", "laws", "around", "the", "country.", "They", "decided", "not", "to", "pursue", "surrogacy", "in", "their", "home", "state", "because", "it", "did", "not", "recognize", "same-sex", "marriages", "at", "the", "time.", "Virginia", "law", "also", "requires", "one", "of", "the", "parents", "in", "a", "surrogacy", "agreement", "to", "be", "genetically", "related", "to", "the", "child.", "The", "couple", "found", "12", "states", "that", "would", "provide", "them", "a", "\"pathway", "to", "parentage.\"", "They", "settled", "on", "Wisconsin", "because", "a", "federal", "judge", "had", "overturned", "the", "state's", "ban", "on", "same-sex", "marriage", "in", "2014", "and", "courts", "here", "had", "allowed", "same-sex", "couples", "to", "be", "recognized", "as", "parents", "of", "a", "child", "born", "through", "surrogacy.", "While", "that", "is", "true,", "it's", "also", "the", "case", "that", "Wisconsin", "law", "says", "little", "about", "surrogacy", "other", "than", "to", "recognize", "its", "existence", "in", "a", "section", "of", "the", "code", "on", "what", "to", "do", "on", "birth", "certificates", "in", "such", "cases.", "The", "Journal", "Sentinel", "wrote", "about", "the", "state's", "cursory", "surrogacy", "laws", "in", "a", "2012", "series.", "In", "2013,", "the", "state", "Supreme", "Court", "issued", "a", "ruling", "in", "a", "surrogacy", "case", "that", "found", "that", "parental", "agreements", "were", "valid", "and", "enforceable", "if", "found", "to", "be", "in", "the", "child's", "best", "interest.", "But", "the", "high", "court", "in", "what", "is", "called", "the", "Rosecky", "case", "also", "urged", "Wisconsin", "legislators", "to", "adopt", "surrogacy", "laws", "because", "the", "process", "is", "being", "used", "frequently", "and", "courts", "and", "individuals", "need", "to", "know", "\"the", "expectations", "and", "limitations", "under", "Wisconsin", "law.\"", "Lawmakers", "never", "did.", "After", "settling", "on", "Wisconsin,", "Timmons", "and", "Olson", "hired", "an", "agency", "called", "Pink", "&", "Blue", "Surrogacy", "and", "Fertility,", "which", "is", "based", "in", "Waterloo,", "and", "it", "helped", "them", "find", "a", "surrogate", "mother", "here.", "Only", "one", "of", "the", "embryos", "proved", "viable.", "In", "June", "2015,", "a", "Dane", "County", "reserve", "judge,", "Sarah", "O'Brien,", "held", "a", "hearing", "and", "issued", "an", "interim", "pre-birth", "order", "granting", "Timmons", "and", "Olson", "parental", "rights.", "O'Brien", "said", "the", "order", "would", "be", "finalized", "when", "the", "child", "was", "born.", "So", "certain", "was", "the", "couple", "that", "the", "deal", "was", "done", "that", "they", "told", "their", "two", "daughters", "that", "they", "soon", "would", "have", "a", "brother,", "whom", "the", "girls", "began", "calling", "\"crazy", "Elvis.\"", "\"In", "fact,", "someone", "even", "gave", "us", "a", "little", "pair", "of", "blue", "suede", "baby", "shoes,\"", "Timmons", "said.", "But", "then", "Troupis,", "who", "had", "been", "newly", "appointed", "by", "Walker,", "took", "over", "the", "case,", "and", "he", "decided", "in", "July", "2015", "that", "he", "would", "appoint", "a", "guardian", "ad", "litem", "to", "represent", "the", "interests", "of", "the", "child", "in", "the", "case.", "The", "new", "judge", "said", "he", "didn't", "have", "a", "problem", "with", "same-sex", "marriage", "but", "wanted", "to", "be", "thorough", "in", "his", "review", "of", "the", "case.", "About", "a", "week", "before", "Jacob", "was", "born,", "Troupis", "hired", "Knutson", "as", "the", "child's", "representative,", "even", "though", "he", "was", "from", "Waukesha", "County.", "Knutson", "had", "an", "associate", "from", "his", "firm,", "Erik", "Krueger,", "assist", "in", "the", "case.", "Krueger", "was", "a", "graduate", "of", "law", "school", "at", "Liberty", "University,", "which", "was", "founded", "by", "evangelical", "leader", "Jerry", "Falwell.", "Krueger", "also", "had", "penned", "a", "2013", "article", "for", "Liberty's", "law", "review", "in", "which", "he", "denounced", "same-sex", "marriage,", "saying", "it", "contradicts", "God's", "law.", "\"It", "is", "one", "thing", "to", "try", "to", "normalize", "same-sex", "relationships,\"", "Krueger", "wrote.", "\"It", "is", "another", "thing", "entirely", "to", "do", "so", "by", "expanding", "the", "God-ordained", "institution", "of", "marriage", "to", "encompass", "the", "very", "thing", "that", "God", "prohibits.\"", "Knutson", "and", "Krueger", "spent", "three", "months", "preparing", "a", "45-page", "report", "and", "brief", "on", "the", "situation,", "deposing", "Timmons,", "Olson,", "the", "surrogate", "mother,", "her", "husband", "and", "officials", "with", "the", "surrogacy", "agency.", "Attorneys", "for", "Timmons", "and", "Olson", "are", "challenging", "Knutson's", "fees", "of", "more", "than", "$100,000.", "Kevin", "St.", "John,", "a", "former", "deputy", "attorney", "general", "who", "is", "representing", "the", "couple,", "wrote", "in", "a", "filing", "that", "the", "\"uncontested", "record", "evidence", "is", "that", "guardian", "ad", "litems", "do", "not", "charge", "more", "than", "$1,500", "for", "services", "in", "uncontested", "cases", "involving", "parental", "rights.\"", "That's", "because", "a", "guardian", "ad", "litem", "typically", "limits", "his", "or", "her", "role", "to", "interviewing", "the", "prospective", "parents", "and", "conducting", "a", "home", "study", "before", "issuing", "a", "short", "recommendation.", "Knutson", "concluded", "that", "it", "was", "in", "Jacob's", "\"best", "interests\"", "that", "Timmons", "and", "Olson", "become", "his", "legal", "parents.", "But", "Knutson", "spent", "the", "bulk", "of", "his", "report", "analyzing", "same-sex", "marriage", "and", "Wisconsin", "surrogacy", "laws", "and", "court", "rulings", "and", "criticizing", "the", "amount", "of", "money", "that", "Timmons", "and", "Olson", "paid", "the", "surrogate", "mother,", "the", "surrogate", "agency", "and", "their", "attorneys.", "Knutson", "even", "included", "a", "section", "on", "the", "ancient", "Greek", "philosopher", "Plato's", "view", "of", "the", "family.", "In", "the", "end,", "Knutson", "found", "that", "state", "lawmakers,", "while", "recognizing", "surrogacy,", "haven't", "spelled", "out", "a", "process", "for", "determining", "parental", "rights", "in", "such", "cases.", "\"As", "we", "move", "away", "from", "the", "traditional", "family", "structure,", "what", "does", "it", "mean", "to", "be", "a", "parent?\"", "Knutson", "asked.", "\"That", "question", "is", "one", "the", "Legislature", "must", "answer,", "not", "the", "courts" ], [ ".\"", "During", "this", "legal", "wrangling,", "Timmons", "and", "Olson", "did", "come", "to", "agreement", "with", "the", "guardian", "ad", "litem", "on", "one", "thing:", "The", "couple", "perhaps", "should", "put", "their", "surrogacy", "case", "on", "hold", "and", "pursue", "adoption", "of", "Jacob", "in", "Virginia.", "When", "they", "asked", "Troupis", "for", "his", "permission", "to", "do", "this,", "the", "judge", "rejected", "the", "request.", "In", "March,", "Troupis", "issued", "his", "21-page", "ruling,", "in", "which", "he", "described", "the", "work", "by", "Knutson", "and", "his", "staff", "as", "\"nothing", "less", "than", "exceptional.\"", "The", "judge", "said", "Timmons", "and", "Olson", "were", "a", "\"spectacular", "set", "of", "parents\"", "and", "that", "Jacob", "\"has,", "quite", "literally,", "won", "the", "lottery\"", "with", "them.", "But", "Troupis", "attacked", "parenthood", "via", "surrogacy", "and", "concluded", "that", "judges", "had", "not", "been", "given", "any", "guidelines", "on", "how", "to", "determine", "who", "the", "parents", "should", "be", "in", "a", "surrogacy", "case.", "\"While", "this", "couple", "is", "extraordinary,", "how", "can", "a", "decision", "here", "to", "give", "them", "parental", "rights", "without", "procedurally", "approved", "predicates", "not", "lead", "to", "horrifying", "abuse", "later", "when", "the", "next", "child", "is", "not", "so", "lucky", "in", "those", "who", "are", "the", "purchasers?\"", "Troupis", "wrote.", "Less", "than", "two", "months", "later,", "Troupis", "abruptly", "resigned", "his", "position.", "That", "opened", "the", "door", "for", "St.", "John", "to", "file", "a", "motion", "asking", "Dane", "County", "Circuit", "Judge", "Peter", "Anderson", "—", "the", "new", "judge", "on", "the", "case", "—", "to", "reopen", "the", "matter", "and", "deal", "with", "several", "problems", "in", "Troupis'", "decision.", "Last", "month,", "Anderson", "moved", "quickly", "to", "toss", "Troupis'", "ruling", "and", "grant", "parental", "rights", "to", "Timmons", "and", "Olson,", "based", "largely", "on", "the", "Supreme", "Court's", "Rosecky", "decision", "in", "2013.", "He", "chalked", "up", "Troupis'", "mistakes", "to", "his", "inexperience", "and", "his", "being", "conflicted", "on", "the", "matter.", "\"So", "I", "have", "this", "court", "saying,", "if", "it's", "in", "the", "best", "interests", "of", "the", "child,", "just", "follow", "the", "(parental)", "agreement", "—", "the", "Wisconsin", "Supreme", "Court", "no", "less,\"", "Anderson", "said", "at", "the", "June", "3", "hearing.", "\"To", "me,", "that", "pretty", "much", "answers", "it.\"", "Timmons", "said", "there", "was", "little", "celebration", "after", "the", "legal", "victory", "last", "month.", "Their", "family", "was", "more", "relieved", "than", "anything", "else.", "\"We", "felt", "vindication,\"", "he", "said.", "While", "the", "case", "was", "under", "review,", "Troupis", "had", "allowed", "the", "two", "fathers", "to", "take", "Jacob", "to", "live", "with", "them", "beginning", "in", "September", "2015.", "But", "the", "uncertainty", "of", "the", "child's", "legal", "status", "made", "family", "life", "difficult.", "\"We", "were", "frightened", "to", "death,", "first", "and", "foremost,", "if", "Jacob", "was", "taken", "away,", "how", "we", "would", "tell", "the", "girls,", "who", "fell", "hopelessly", "in", "love", "with", "their", "brother", "from", "the", "second", "they", "saw", "him,\"", "Timmons", "said.", "\"We", "were", "afraid", "to", "fall", "in", "love", "with", "our", "own", "child.\"", "Timmons", "and", "Olson,", "though,", "said", "they", "never", "had", "any", "intention", "of", "giving", "up", "their", "fight.", "They", "ended", "up", "taking", "out", "second", "and", "third", "mortgages", "on", "their", "house", "to", "pay", "their", "legal", "bills", "and", "those", "of", "the", "surrogacy", "agency.", "But", "they", "said", "they", "realize", "others", "don't", "have", "the", "resources", "to", "do", "the", "same.", "\"We", "would", "talk", "all", "the", "time", "about", "other", "people,\"", "Timmons", "said.", "\"What", "would", "their", "alternative", "be?", "The", "alternative", "would", "be,", "'We", "can't", "have", "our", "child", "because", "of", "this", "rogue", "judge", "and", "this", "crazy", "guardian.'\"", "The", "case,", "which", "is", "nearing", "conclusion,", "brings", "together", "political", "conservatives", "of", "different", "stripes.", "Timmons", "and", "Olson", "have", "been", "active", "in", "conservative", "circles", "for", "decades,", "with", "both", "having", "worked", "for", "George", "Allen,", "the", "former", "Virginia", "governor", "and", "U.S.", "senator.", "Both", "also", "donate", "regularly", "to", "conservative", "candidates", "and", "causes.", "Timmons'", "organization", "is", "among", "the", "most", "powerful", "business", "lobbies", "in", "the", "nation.", "In", "turn,", "Troupis", "has", "been", "active", "in", "Republican", "circles", "since", "at", "least", "1986,", "when", "he", "ran", "the", "campaign", "for", "an", "Illinois", "candidate", "for", "U.S.", "Senate.", "More", "recently,", "he", "advised", "the", "forcible", "return", "of", "14", "Democratic", "senators", "who", "fled", "to", "Illinois", "in", "2011", "in", "an", "attempt", "to", "block", "passage", "of", "Act", "10,", "Walker's", "measure", "to", "curb", "collective", "bargaining.", "He", "was", "an", "attorney", "for", "Justice", "David", "Prosser", "during", "his", "2011", "recount.", "He", "also", "was", "one", "of", "the", "attorneys", "who", "assisted", "Republicans", "as", "they", "redrew", "legislative", "and", "congressional", "boundaries.", "But", "Timmons", "and", "Olson", "said", "they", "do", "not", "see", "their", "case", "as", "being", "about", "politics", "or", "philosophy.", "To", "them,", "it", "is", "primarily", "about", "judicial", "activism", "—", "a", "point", "Timmons", "made", "in", "a", "recent", "online", "opinion", "piece.", "\"You", "can", "have", "an", "activist", "liberal", "judge,", "and", "you", "can", "have", "an", "activist", "conservative", "judge,\"", "Timmons", "said", "during", "an", "hourlong", "interview", "last", "week.", "\"We", "happened", "to", "get", "an", "activist", "conservative", "judge", "who", "decided", "he", "was", "going", "to", "impose", "his", "own", "values,", "his", "own", "social", "mores,", "and", "he", "was", "going", "to", "ignore", "the", "law,", "and", "he", "was", "certainly", "going", "to", "ignore", "the", "ruling", "of", "the", "Supreme", "Court", "of", "Wisconsin.\"", "Contact", "Daniel", "Bice", "at", "(414)", "224-2135", "or", "[email protected].", "Follow", "him", "on", "Twitter", "@DanielBiceor", "on", "Facebook", "at", "fb.me/daniel.bice." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "ro", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en" ] ]
[ [ [ "Jay", "Timmons", "(left)", "and", "Rick", "Olson", "hold", "their", "son,", "Jacob", "Timmons,", "on", "Friday", "at", "their", "home", "in", "McLean,", "Va.", "Credit:", "Amanda", "Voisard", "Jay", "Timmons", "and", "Rick", "Olson", "expected", "little", "legal", "trouble", "when", "they", "filed", "papers", "in", "Dane", "County", "Circuit", "Court", "last", "year", "to", "become", "the", "fathers", "of", "a", "son", "through", "a", "surrogate", "mother", "in", "Wisconsin.", "They", "had", "good", "jobs", "—", "Timmons,", "54,", "was", "the", "head", "of", "the", "pro-business", "National", "Association", "of", "Manufacturers,", "and", "Olson,", "49,", "was", "a", "federal", "lobbyist", "for", "Capital", "One.", "They", "were", "married", "in", "2008", "and", "have", "been", "together", "for", "25", "years.", "They", "also", "had", "two", "daughters", "through", "surrogacy.", "They", "had", "more", "than", "150", "letters", "of", "recommendation.", "And", "Wisconsin", "courts", "tend", "to", "rubber-stamp", "these", "lightly", "regulated", "arrangements,", "especially", "when", "no", "one", "is", "contesting", "the", "matter,", "as", "was", "the", "case", "here.", "But", "that", "didn't", "happen.", "Timmons", "and", "Olson", "were", "plunged", "into", "a", "yearlong", "legal", "morass", "that", "has", "cost", "them", "$400,000", "in", "legal", "expenses", "—", "on", "top", "of", "the", "$35,000", "they", "paid", "the", "surrogate", "mother", "and", "$12,500", "to", "a", "surrogacy", "agency.", "Olson", "even", "had", "to", "quit", "his", "job", "to", "take", "up", "the", "legal", "case", "full", "time.", "Then-Dane", "County", "Circuit", "Judge", "James", "Troupis", "appointed", "a", "guardian", "ad", "litem", "who", "billed", "the", "couple", "an", "astounding", "$100,000", "while", "preparing", "a", "report", "and", "brief", "that", "called", "into", "question", "changes", "in", "the", "traditional", "family", "structure.", "The", "report", "concluded", "that", "it", "was", "in", "the", "child's", "best", "interest", "that", "Timmons", "and", "Olson", "become", "his", "legal", "parents", "—", "but", "urged", "Troupis", "to", "reject", "their", "surrogacy", "agreement", "on", "legal", "grounds.", "Troupis", "then", "issued", "a", "decision", "stripping", "the", "surrogate", "mother", "of", "her", "parental", "rights", "and", "denying", "Timmons", "and", "Olson", "parentage.", "That", "rendered", "the", "then-7-month-old", "boy", "an", "orphan.", "In", "his", "21-page", "ruling,", "Troupis", "adopted", "often-polemical", "language", "to", "criticize", "surrogacy,", "even", "though", "it's", "not", "illegal", "under", "state", "law.", "He", "referred", "to", "the", "surrogate", "mother", "as", "a", "\"womb,\"", "labeled", "the", "frozen", "embryo", "a", "\"child\"", "and", "said", "the", "two", "fathers", "were", "seeking", "\"ownership\"", "of", "the", "child.", "\"Human", "trafficking", "comes", "in", "many", "forms,\"", "Troupis", "wrote", "in", "the", "opening", "sentence", "of", "his", "March", "25", "decision.", "\"The", "child", "here", "was", "a", "gift", "from", "another", "couple,", "made", "possible", "by", "payment", "to", "an", "agency", "and", "to", "a", "mother,\"", "Troupis", "wrote", "later", "in", "his", "ruling.", "\"Can", "any", "such", "agreement", "be", "made", "without", "violating", "human", "trafficking", "laws?\"", "The", "case", "has", "taken", "several", "turns", "since", "that", "decision", "was", "handed", "down.", "Troupis", "is", "no", "longer", "on", "the", "bench,", "having", "resigned", "less", "than", "a", "year", "after", "being", "appointed", "by", "Gov.", "Scott", "Walker.", "He", "recently", "failed", "in", "his", "bid", "to", "land", "a", "seat", "on", "the", "state", "Supreme", "Court.", "Another", "Dane", "County", "judge", "has", "reversed", "Troupis'", "ruling,", "calling", "it", "\"unduly", "harsh,\"", "\"weird\"", "and", "\"faulty\"", "for", "ignoring", "a", "recent", "state", "Supreme", "Court", "decision", "that", "he", "said", "found", "surrogacy", "arrangements", "are", "valid", "as", "long", "as", "they", "are", "in", "the", "best", "interests", "of", "the", "child.", "And", "Timmons", "and", "Olson", "now", "have", "their", "son,", "Jacob,", "who", "will", "turn", "1", "on", "Aug.", "17.", "But", "the", "pair,", "who", "live", "in", "McLean,", "Va.,", "are", "still", "stinging", "from", "the", "entire", "experience", "at", "the", "hands", "of", "the", "Wisconsin", "judicial", "system.", "\"If", "we", "don't", "speak", "up", "about", "this,", "there's", "going", "to", "be", "another", "judge", "that", "tries", "the", "same", "thing,\"", "Olson", "said.", "\"This", "hopefully", "will", "put", "judges", "in", "check,\"", "Timmons", "said.", "\"They", "need", "to", "understand", "that", "they", "have", "one", "job,", "and", "that's", "to", "apply", "the", "law.", "\"It", "is", "never", "in", "the", "best", "interest", "of", "a", "child", "to", "proactively", "and", "knowingly", "make", "the", "child", "an", "orphan.\"", "Troupis,", "who", "has", "returned", "to", "private", "practice,", "declined", "to", "discuss", "the", "case", "last", "week.", "\"As", "a", "judge,", "I", "cannot", "as", "an", "ethical", "matter", "comment", "on", "a", "matter", "that", "was", "before", "me", "that", "remains", "pending,\"", "said", "Troupis,", "long", "a", "force", "in", "Republican", "circles.", "The", "guardian", "ad", "litem,", "Mark", "Knutson", "of", "Brookfield,", "also", "refused", "to", "comment.", "\"Because", "the", "nature", "of", "this", "case,", "i.e.", "confidential,", "and", "my", "ethical", "responsibilities,", "I", "am", "not", "at", "liberty", "to", "comment,\"", "Knutson", "wrote", "in", "an", "email.", "The", "records", "in", "the", "case", "are", "not", "public", "but", "were", "provided", "to", "the", "Milwaukee", "Journal", "Sentinel", "by", "sources", "not", "directly", "involved", "in", "the", "legal", "dispute.", "Timmons", "and", "Olson", "ended", "up", "in", "Wisconsin", "through", "a", "circuitous", "route.", "Nearly", "three", "years", "ago,", "they", "were", "offered", "two", "frozen", "embryos", "from", "a", "heterosexual", "couple", "as", "a", "gift.", "The", "couple", "needed", "to", "use", "in", "vitro", "fertilization", "to", "have", "their", "four", "children", "but", "were", "left", "with", "two", "unused", "embryos,", "which", "they", "didn't", "want", "to", "destroy.", "Timmons", "and", "Olson", "already", "had", "two", "daughters,", "who", "are", "now", "5", "and", "6.", "\"They", "had", "gotten", "to", "see", "us", "with", "our", "daughters", "and", "how", "we" ] ], [ [ "were", "raising", "them,\"", "Timmons", "said.", "\"They", "asked", "us", "if", "we", "would", "take", "the", "embryos", "and", "raise", "them", "as", "our", "children.", "We", "accepted", "the", "offer.\"", "Before", "moving", "forward,", "however,", "Timmons", "and", "Olson", "spent", "nearly", "a", "year", "researching", "surrogacy", "laws", "around", "the", "country.", "They", "decided", "not", "to", "pursue", "surrogacy", "in", "their", "home", "state", "because", "it", "did", "not", "recognize", "same-sex", "marriages", "at", "the", "time.", "Virginia", "law", "also", "requires", "one", "of", "the", "parents", "in", "a", "surrogacy", "agreement", "to", "be", "genetically", "related", "to", "the", "child.", "The", "couple", "found", "12", "states", "that", "would", "provide", "them", "a", "\"pathway", "to", "parentage.\"", "They", "settled", "on", "Wisconsin", "because", "a", "federal", "judge", "had", "overturned", "the", "state's", "ban", "on", "same-sex", "marriage", "in", "2014", "and", "courts", "here", "had", "allowed", "same-sex", "couples", "to", "be", "recognized", "as", "parents", "of", "a", "child", "born", "through", "surrogacy.", "While", "that", "is", "true,", "it's", "also", "the", "case", "that", "Wisconsin", "law", "says", "little", "about", "surrogacy", "other", "than", "to", "recognize", "its", "existence", "in", "a", "section", "of", "the", "code", "on", "what", "to", "do", "on", "birth", "certificates", "in", "such", "cases.", "The", "Journal", "Sentinel", "wrote", "about", "the", "state's", "cursory", "surrogacy", "laws", "in", "a", "2012", "series.", "In", "2013,", "the", "state", "Supreme", "Court", "issued", "a", "ruling", "in", "a", "surrogacy", "case", "that", "found", "that", "parental", "agreements", "were", "valid", "and", "enforceable", "if", "found", "to", "be", "in", "the", "child's", "best", "interest.", "But", "the", "high", "court", "in", "what", "is", "called", "the", "Rosecky", "case", "also", "urged", "Wisconsin", "legislators", "to", "adopt", "surrogacy", "laws", "because", "the", "process", "is", "being", "used", "frequently", "and", "courts", "and", "individuals", "need", "to", "know", "\"the", "expectations", "and", "limitations", "under", "Wisconsin", "law.\"", "Lawmakers", "never", "did.", "After", "settling", "on", "Wisconsin,", "Timmons", "and", "Olson", "hired", "an", "agency", "called", "Pink", "&", "Blue", "Surrogacy", "and", "Fertility,", "which", "is", "based", "in", "Waterloo,", "and", "it", "helped", "them", "find", "a", "surrogate", "mother", "here.", "Only", "one", "of", "the", "embryos", "proved", "viable.", "In", "June", "2015,", "a", "Dane", "County", "reserve", "judge,", "Sarah", "O'Brien,", "held", "a", "hearing", "and", "issued", "an", "interim", "pre-birth", "order", "granting", "Timmons", "and", "Olson", "parental", "rights.", "O'Brien", "said", "the", "order", "would", "be", "finalized", "when", "the", "child", "was", "born.", "So", "certain", "was", "the", "couple", "that", "the", "deal", "was", "done", "that", "they", "told", "their", "two", "daughters", "that", "they", "soon", "would", "have", "a", "brother,", "whom", "the", "girls", "began", "calling", "\"crazy", "Elvis.\"", "\"In", "fact,", "someone", "even", "gave", "us", "a", "little", "pair", "of", "blue", "suede", "baby", "shoes,\"", "Timmons", "said.", "But", "then", "Troupis,", "who", "had", "been", "newly", "appointed", "by", "Walker,", "took", "over", "the", "case,", "and", "he", "decided", "in", "July", "2015", "that", "he", "would", "appoint", "a", "guardian", "ad", "litem", "to", "represent", "the", "interests", "of", "the", "child", "in", "the", "case.", "The", "new", "judge", "said", "he", "didn't", "have", "a", "problem", "with", "same-sex", "marriage", "but", "wanted", "to", "be", "thorough", "in", "his", "review", "of", "the", "case.", "About", "a", "week", "before", "Jacob", "was", "born,", "Troupis", "hired", "Knutson", "as", "the", "child's", "representative,", "even", "though", "he", "was", "from", "Waukesha", "County.", "Knutson", "had", "an", "associate", "from", "his", "firm,", "Erik", "Krueger,", "assist", "in", "the", "case.", "Krueger", "was", "a", "graduate", "of", "law", "school", "at", "Liberty", "University,", "which", "was", "founded", "by", "evangelical", "leader", "Jerry", "Falwell.", "Krueger", "also", "had", "penned", "a", "2013", "article", "for", "Liberty's", "law", "review", "in", "which", "he", "denounced", "same-sex", "marriage,", "saying", "it", "contradicts", "God's", "law.", "\"It", "is", "one", "thing", "to", "try", "to", "normalize", "same-sex", "relationships,\"", "Krueger", "wrote.", "\"It", "is", "another", "thing", "entirely", "to", "do", "so", "by", "expanding", "the", "God-ordained", "institution", "of", "marriage", "to", "encompass", "the", "very", "thing", "that", "God", "prohibits.\"", "Knutson", "and", "Krueger", "spent", "three", "months", "preparing", "a", "45-page", "report", "and", "brief", "on", "the", "situation,", "deposing", "Timmons,", "Olson,", "the", "surrogate", "mother,", "her", "husband", "and", "officials", "with", "the", "surrogacy", "agency.", "Attorneys", "for", "Timmons", "and", "Olson", "are", "challenging", "Knutson's", "fees", "of", "more", "than", "$100,000.", "Kevin", "St.", "John,", "a", "former", "deputy", "attorney", "general", "who", "is", "representing", "the", "couple,", "wrote", "in", "a", "filing", "that", "the", "\"uncontested", "record", "evidence", "is", "that", "guardian", "ad", "litems", "do", "not", "charge", "more", "than", "$1,500", "for", "services", "in", "uncontested", "cases", "involving", "parental", "rights.\"", "That's", "because", "a", "guardian", "ad", "litem", "typically", "limits", "his", "or", "her", "role", "to", "interviewing", "the", "prospective", "parents", "and", "conducting", "a", "home", "study", "before", "issuing", "a", "short", "recommendation.", "Knutson", "concluded", "that", "it", "was", "in", "Jacob's", "\"best", "interests\"", "that", "Timmons", "and", "Olson", "become", "his", "legal", "parents.", "But", "Knutson", "spent", "the", "bulk", "of", "his", "report", "analyzing", "same-sex", "marriage", "and", "Wisconsin", "surrogacy", "laws", "and", "court", "rulings", "and", "criticizing", "the", "amount", "of", "money", "that", "Timmons", "and", "Olson", "paid", "the", "surrogate", "mother,", "the", "surrogate", "agency", "and", "their", "attorneys.", "Knutson", "even", "included", "a", "section", "on", "the", "ancient", "Greek", "philosopher", "Plato's", "view", "of", "the", "family.", "In", "the", "end,", "Knutson", "found", "that", "state", "lawmakers,", "while", "recognizing", "surrogacy,", "haven't", "spelled", "out", "a", "process", "for", "determining", "parental", "rights", "in", "such", "cases.", "\"As", "we", "move", "away", "from", "the", "traditional", "family", "structure,", "what", "does", "it", "mean", "to", "be", "a", "parent?\"", "Knutson", "asked.", "\"That", "question", "is", "one", "the", "Legislature", "must", "answer,", "not", "the", "courts" ] ], [ [ ".\"", "During", "this", "legal", "wrangling,", "Timmons", "and", "Olson", "did", "come", "to", "agreement", "with", "the", "guardian", "ad", "litem", "on", "one", "thing:", "The", "couple", "perhaps", "should", "put", "their", "surrogacy", "case", "on", "hold", "and", "pursue", "adoption", "of", "Jacob", "in", "Virginia.", "When", "they", "asked", "Troupis", "for", "his", "permission", "to", "do", "this,", "the", "judge", "rejected", "the", "request.", "In", "March,", "Troupis", "issued", "his", "21-page", "ruling,", "in", "which", "he", "described", "the", "work", "by", "Knutson", "and", "his", "staff", "as", "\"nothing", "less", "than", "exceptional.\"", "The", "judge", "said", "Timmons", "and", "Olson", "were", "a", "\"spectacular", "set", "of", "parents\"", "and", "that", "Jacob", "\"has,", "quite", "literally,", "won", "the", "lottery\"", "with", "them.", "But", "Troupis", "attacked", "parenthood", "via", "surrogacy", "and", "concluded", "that", "judges", "had", "not", "been", "given", "any", "guidelines", "on", "how", "to", "determine", "who", "the", "parents", "should", "be", "in", "a", "surrogacy", "case.", "\"While", "this", "couple", "is", "extraordinary,", "how", "can", "a", "decision", "here", "to", "give", "them", "parental", "rights", "without", "procedurally", "approved", "predicates", "not", "lead", "to", "horrifying", "abuse", "later", "when", "the", "next", "child", "is", "not", "so", "lucky", "in", "those", "who", "are", "the", "purchasers?\"", "Troupis", "wrote.", "Less", "than", "two", "months", "later,", "Troupis", "abruptly", "resigned", "his", "position.", "That", "opened", "the", "door", "for", "St.", "John", "to", "file", "a", "motion", "asking", "Dane", "County", "Circuit", "Judge", "Peter", "Anderson", "—", "the", "new", "judge", "on", "the", "case", "—", "to", "reopen", "the", "matter", "and", "deal", "with", "several", "problems", "in", "Troupis'", "decision.", "Last", "month,", "Anderson", "moved", "quickly", "to", "toss", "Troupis'", "ruling", "and", "grant", "parental", "rights", "to", "Timmons", "and", "Olson,", "based", "largely", "on", "the", "Supreme", "Court's", "Rosecky", "decision", "in", "2013.", "He", "chalked", "up", "Troupis'", "mistakes", "to", "his", "inexperience", "and", "his", "being", "conflicted", "on", "the", "matter.", "\"So", "I", "have", "this", "court", "saying,", "if", "it's", "in", "the", "best", "interests", "of", "the", "child,", "just", "follow", "the", "(parental)", "agreement", "—", "the", "Wisconsin", "Supreme", "Court", "no", "less,\"", "Anderson", "said", "at", "the", "June", "3", "hearing.", "\"To", "me,", "that", "pretty", "much", "answers", "it.\"", "Timmons", "said", "there", "was", "little", "celebration", "after", "the", "legal", "victory", "last", "month.", "Their", "family", "was", "more", "relieved", "than", "anything", "else.", "\"We", "felt", "vindication,\"", "he", "said.", "While", "the", "case", "was", "under", "review,", "Troupis", "had", "allowed", "the", "two", "fathers", "to", "take", "Jacob", "to", "live", "with", "them", "beginning", "in", "September", "2015.", "But", "the", "uncertainty", "of", "the", "child's", "legal", "status", "made", "family", "life", "difficult.", "\"We", "were", "frightened", "to", "death,", "first", "and", "foremost,", "if", "Jacob", "was", "taken", "away,", "how", "we", "would", "tell", "the", "girls,", "who", "fell", "hopelessly", "in", "love", "with", "their", "brother", "from", "the", "second", "they", "saw", "him,\"", "Timmons", "said.", "\"We", "were", "afraid", "to", "fall", "in", "love", "with", "our", "own", "child.\"", "Timmons", "and", "Olson,", "though,", "said", "they", "never", "had", "any", "intention", "of", "giving", "up", "their", "fight.", "They", "ended", "up", "taking", "out", "second", "and", "third", "mortgages", "on", "their", "house", "to", "pay", "their", "legal", "bills", "and", "those", "of", "the", "surrogacy", "agency.", "But", "they", "said", "they", "realize", "others", "don't", "have", "the", "resources", "to", "do", "the", "same.", "\"We", "would", "talk", "all", "the", "time", "about", "other", "people,\"", "Timmons", "said.", "\"What", "would", "their", "alternative", "be?", "The", "alternative", "would", "be,", "'We", "can't", "have", "our", "child", "because", "of", "this", "rogue", "judge", "and", "this", "crazy", "guardian.'\"", "The", "case,", "which", "is", "nearing", "conclusion,", "brings", "together", "political", "conservatives", "of", "different", "stripes.", "Timmons", "and", "Olson", "have", "been", "active", "in", "conservative", "circles", "for", "decades,", "with", "both", "having", "worked", "for", "George", "Allen,", "the", "former", "Virginia", "governor", "and", "U.S.", "senator.", "Both", "also", "donate", "regularly", "to", "conservative", "candidates", "and", "causes.", "Timmons'", "organization", "is", "among", "the", "most", "powerful", "business", "lobbies", "in", "the", "nation.", "In", "turn,", "Troupis", "has", "been", "active", "in", "Republican", "circles", "since", "at", "least", "1986,", "when", "he", "ran", "the", "campaign", "for", "an", "Illinois", "candidate", "for", "U.S.", "Senate.", "More", "recently,", "he", "advised", "the", "forcible", "return", "of", "14", "Democratic", "senators", "who", "fled", "to", "Illinois", "in", "2011", "in", "an", "attempt", "to", "block", "passage", "of", "Act", "10,", "Walker's", "measure", "to", "curb", "collective", "bargaining.", "He", "was", "an", "attorney", "for", "Justice", "David", "Prosser", "during", "his", "2011", "recount.", "He", "also", "was", "one", "of", "the", "attorneys", "who", "assisted", "Republicans", "as", "they", "redrew", "legislative", "and", "congressional", "boundaries.", "But", "Timmons", "and", "Olson", "said", "they", "do", "not", "see", "their", "case", "as", "being", "about", "politics", "or", "philosophy.", "To", "them,", "it", "is", "primarily", "about", "judicial", "activism", "—", "a", "point", "Timmons", "made", "in", "a", "recent", "online", "opinion", "piece.", "\"You", "can", "have", "an", "activist", "liberal", "judge,", "and", "you", "can", "have", "an", "activist", "conservative", "judge,\"", "Timmons", "said", "during", "an", "hourlong", "interview", "last", "week.", "\"We", "happened", "to", "get", "an", "activist", "conservative", "judge", "who", "decided", "he", "was", "going", "to", "impose", "his", "own", "values,", "his", "own", "social", "mores,", "and", "he", "was", "going", "to", "ignore", "the", "law,", "and", "he", "was", "certainly", "going", "to", "ignore", "the", "ruling", "of", "the", "Supreme", "Court", "of", "Wisconsin.\"", "Contact", "Daniel", "Bice", "at", "(414)", "224-2135", "or", "[email protected].", "Follow", "him", "on", "Twitter", "@DanielBiceor", "on", "Facebook", "at", "fb.me/daniel.bice." ] ] ]
[ [ "en" ], [ "en" ], [ "en" ] ]
[ "mono", "mono", "mono", "mono", "mono" ]
[ [ "Sofa", "bọc", "da", "cao", "cấp", "chân", "gỗ", "giá", "rẻ", "Sofa", "bọc", "da", "Serena", "mang", "ý", "nghĩa", "của", "sự", "thanh", "khiết", "và", "nhẹ", "nhàng,", "thích", "hợp", "cho", "mọi", "không", "gian", "phòng", "khách.", "Bộ", "sofa", "với", "thiết", "kế", "tinh", "tế,", "đẹp", "mắt.", "Và", "màu", "sắc", "hướng", "về", "sự", "quý", "phái", "với", "các", "gam", "màu", "xám,", "xanh", "rêu,", "xanh", "dương", "đậm,….Hãy", "tậu", "ngay", "bộ", "ghế", "sofa", "bọc", "da", "cao", "cấp", "cho", "gia", "đình", "để", "có", "được", "phút", "giây", "thư", "giãn", "thoải", "mái", "nhất!", "Bộ", "ghế", "bọc", "da", "Serena", "được", "làm", "từ", "chất", "liệu", "nệm", "mút", "êm", "ái", "bên", "trong.", "Bên", "ngoài", "bọc", "bởi", "da", "cao", "cấp", "nhập", "khẩu", "mang", "đến", "sự", "sang", "trọng", "cho", "không", "gian.", "Nó", "còn", "đem", "lại", "sự", "thoải", "mái", "cho", "người", "sử", "dụng.", "Với", "giá", "thành", "sản", "phẩm", "mềm", "mại,", "phù", "hợp", "với", "kinh", "tế", "của", "nhiều", "gia", "đình.", "Sofa", "bọc", "da", "Serena", "–", "Sofa", "da", "giá", "rẻ", "siêu", "bền", "đẹp", "cho", "mọi", "gia", "đình", "Nội", "thất", "gia", "đình", "hiện", "đại", "thường", "thấy", "sự", "xuất", "hiện", "của", "bộ", "sofa", "da.", "Bởi", "lẽ", "món", "đồ", "nội", "thất", "này", "không", "chỉ", "có", "giá", "trị", "sử", "dụng", "mà", "còn", "là", "món", "đồ", "trang", "trí.", "Giúp", "tổng", "quan", "phòng", "khách", "trở", "nên", "hài", "hòa,", "thẩm", "mỹ", "nhất.", "Sofa", "da", "Serena", "là", "một", "siêu", "phẩm", "sofa", "với", "chất", "liệu", "nệm", "mút", "êm", "ái,", "độ", "bền", "cao.", "Và", "bên", "ngoài", "được", "bọc", "da", "hạng", "sang", "nhập", "khẩu.", "Sản", "phẩm", "cực", "kỳ", "được", "yêu", "thích", "tại", "Kita", "bởi", "khách", "hàng", "nhận", "định:", "+", "Giá", "thành", "rẻ", "Bộ", "ghế", "sofa", "da", "Serena", "tuy", "không", "được", "làm", "từ", "da", "động", "vật", "nhưng", "ch�" ], [ "��t", "liệu", "da", "bọc", "bên", "ngoài", "là", "hàng", "cao", "cấp", "nhập", "khẩu", "chính", "ngạch,", "giá", "thành", "rẻ", "hơn", "rất", "nhiều", "so", "với", "mua", "sofa", "da", "thật", "(sofa", "da", "thật", "lên", "đến", "cả", "trăm", "triệu", "một", "bộ).", "Do", "đó,", "sofa", "da", "công", "nghiệp", "được", "sử", "dụng", "rộng", "rãi", "hơn", "tại", "các", "hộ", "gia", "đình", "Việt.", "Từ", "thành", "thị", "đến", "nhiều", "hộ", "gia", "đình", "ở", "các", "vùng", "quê", "cũng", "yêu", "thích", "nội", "thất", "này.", "+", "Sofa", "bọc", "da", "có", "tính", "thẩm", "mỹ", "cao", "Từ", "kiểu", "dáng", "nhỏ", "gọn", "đến", "chất", "liệu", "tốt,", "đường", "may", "bắt", "mắt", "và", "khéo", "léo", "đã", "giúp", "mẫu", "ghế", "da", "Serena", "chiếm", "được", "thiện", "cảm", "của", "người", "tiêu", "dùng.", "Với", "công", "nghệ", "sản", "xuất", "ngày", "càng", "hiện", "đại,", "sofa", "da", "nhập", "khẩu", "ngày", "càng", "được", "làm", "giống", "với", "sofa", "da", "thật.", "Chỉ", "nhìn", "sơ", "rất", "khó", "phân", "biệt,", "điều", "này", "giúp", "sản", "phẩm", "có", "được", "tính", "thẩm", "mỹ", "cao", "hơn.", "+", "Sofa", "bọc", "da", "sang", "trọng", "và", "tinh", "tế", "Nếu", "như", "sofa", "vải", "hướng", "đến", "sự", "trẻ", "trung,", "năng", "động", "thì", "bộ", "ghế", "da", "lại", "hướng", "đến", "sự", "sang", "trọng", "và", "tinh", "tế.", "Những", "mẫu", "ghế", "sofa", "da", "được", "thiết", "kế", "trang", "nhã", "với", "màu", "sắc", "có", "thiên", "hướng", "đơn", "sắc,", "quý", "tộc", "như", "xanh", "rêu,", "xám,", "xanh", "dương", "đậm,", "màu", "đen,….", "+", "Độ", "bền", "tương", "đối", "tốt", "Sofa", "bọc", "da", "Serena", "cao", "cấp", "đương", "nhiên", "không", "thể", "nào", "so", "sánh", "với", "độ", "bền", "của", "sofa", "da", "thật", "100%.", "Tuy", "nhiên,", "sản", "phẩm", "cũng", "được", "đánh", "giá", "rất", "cao", "về", "độ", "�" ], [ "�m", "ái,", "độ", "đàn", "hồi", "và", "khả", "năng", "sử", "dụng", "lên", "đến", "hàng", "chục", "năm", "không", "hư", "hỏng", "do", "chất", "liệu", "được", "xử", "lý", "vô", "cùng", "kỹ", "lưỡng,", "bên", "ngoài", "bọc", "da", "nhập", "khẩu", "độ", "bền", "cao.", "+", "Dễ", "vệ", "sinh,", "không", "thấm", "nước", "Bộ", "bàn", "ghế", "sofa", "bọc", "da", "cao", "cấp", "là", "sự", "lựa", "chọn", "hoàn", "hảo", "cho", "các", "gia", "đình", "hiện", "nay,", "từ", "người", "độc", "thân", "đến", "các", "cặp", "vợ", "chồng", "trẻ,", "gia", "đình", "có", "con", "nhỏ", "và", "người", "cao", "tuổi", "bởi", "sản", "phẩm", "rất", "dễ", "vệ", "sinh", "khi", "không", "may", "bị", "lấm", "bẩn.", "Sofa", "không", "thấm", "nước", "và", "hạn", "chế", "được", "ẩm", "mốc,", "mùi", "hôi", "nên", "rất", "dễ", "chịu", "khi", "sử", "dụng.", "Bàn", "ghế", "gỗ", "sofa", "bọc", "da", "sẽ", "là", "nơi", "để", "gia", "đình", "tụ", "họp,", "là", "nơi", "nghỉ", "ngơi", "và", "thư", "giãn", "thoải", "mái", "để", "cả", "gia", "đình", "có", "thể", "gắn", "kết", "với", "nhau", "hơn!", "Mua", "một", "bộ", "sofa", "ưng", "ý", "sẽ", "giúp", "ích", "rất", "nhiều", "cho", "cuộc", "sống", "tiện", "nghi.", "➢", "Sofa", "bọc", "da", "Serena", "trở", "thành", "sự", "lựa", "chọn", "lý", "tưởng", "cho", "nhiều", "gia", "đình.", "Bạn", "đã", "ưng", "ý", "với", "màu", "sắc", "nào", "của", "sản", "phẩm", "này", "chưa?", "Liên", "hệ", "Kita", "hôm", "nay", "để", "được", "tư", "vấn", "chọn", "mua", "sản", "phẩm", "tốt", "với", "giá", "thành", "mềm", "nhất", "nhé!", "Những", "lý", "do", "bạn", "nên", "lựa", "chọn", "sofa", "bọc", "da", "ở", "Kita", "Furniture!", "Kita", "với", "nhiều", "năm", "trong", "lĩnh", "vực", "nội", "thất,", "mang", "đến", "khách", "hàng", "những", "bộ", "sofa", "với", "đa", "dạng", "mẫu", "mã,", "chất", "liệu", "với", "giá", "thành", "tốt", "nhất", "do", "phâ" ], [ "n", "phối", "trực", "tiếp", "không", "qua", "trung", "gian,", "nhanh", "chóng", "đưa", "sofa", "đến", "với", "khách", "hàng", "toàn", "quốc", "và", "bảo", "hành", "sản", "phẩm", "chuyên", "nghiệp", "nhất.", "Khi", "khách", "hàng", "chọn", "mua", "các", "mẫu", "ghế", "sofa", "bọc", "da", "tại", "đây", "đồng", "nghĩa", "với", "việc", "khách", "hàng", "có", "được", "những", "lợi", "ích:", "❉", "Cam", "kết", "chất", "lượng", "vượt", "trội", "Chất", "lượng", "sản", "phẩm", "luôn", "được", "đưa", "lên", "hàng", "đầu,", "quy", "trình", "sản", "xuất", "nghiêm", "ngặt.", "Với", "chất", "liệu", "da", "bọc", "nhập", "khẩu", "mang", "lại", "luồn", "gió", "mới", "cho", "sản", "phẩm", "sofa", "bọc", "da", "trên", "thị", "trường.", "Mang", "đến", "khách", "hàng", "những", "bộ", "sofa", "bọc", "da", "chất", "lượng", "và", "đẹp", "nhất!", "❉", "Quy", "trình", "sản", "xuất", "chính", "ngạch,", "đảm", "bảo", "vê", "sinh", "môi", "trường", "Chất", "liệu", "bên", "trong", "được", "làm", "từ", "nệm", "mút", "êm", "ái", "hay", "gỗ", "nhập", "khẩu", "như", "xoan,", "gỗ", "sồi,", "gỗ", "dầu", "được", "xử", "lý", "kỹ", "nhằm", "tránh", "mối", "mọt,", "hư", "hỏng", "nên", "tuổi", "thọ", "sản", "phẩm", "lên", "đến", "hàng", "chục", "năm.", "❉", "Nhân", "viên", "nhiệt", "tình,", "tư", "vấn", "tận", "tâm", "Nhân", "viên", "nhiệt", "tình", "sẵn", "sàng", "tư", "vấn,", "báo", "giá", "sofa", "bọc", "da", "chính", "xác", "nhất", "để", "khách", "hàng", "có", "được", "lựa", "chọn", "phù", "hợp.", "Nếu", "khách", "hàng", "muốn", "sofa", "cao", "cấp", "hơn,", "Kita", "có", "sofa", "da", "thật", "100%", "và", "nếu", "muốn", "sofa", "bình", "dân", "hơn,", "chúng", "tôi", "sẽ", "tư", "vấn", "sofa", "vải", "hoặc", "giả", "da", "với", "hàng", "nghìn", "mẫu", "mã", "cho", "khách", "hàng", "chọn", "lựa.", "❉", "Giá", "cạnh", "tranh,", "bán", "hàng", "toàn", "quốc", "Giao", "hàng", "nhanh", "chóng", "trên", "toàn", "qu" ], [ "ốc,", "đưa", "sofa", "chất", "lượng", "đến", "với", "khách", "hàng", "cả", "nước", "và", "đóng", "gói", "cẩn", "thận,", "gửi", "kèm", "tem", "phiếu", "bảo", "hành", "với", "thời", "gian", "bảo", "hành", "tùy", "vào", "từng", "sản", "phẩm", "mà", "có", "thể", "lên", "đến", "10-20", "năm.", "Liên", "hệ", "Kita", "ngay", "hôm", "nay", "để", "sở", "hữu", "Sofa", "bọc", "da", "Serena", "và", "hàng", "nghìn", "bộ", "sofa", "với", "đa", "dạng", "chất", "liệu", "nhé!", "Xem", "thêm", "nhiều", "mẫu", "sofa", "da", "khác", "tại", "ĐÂY", "Công", "ty", "TNHH", "Kiến", "Tạo", "và", "Kiệt", "Tác", "Kita", "Sky", "Xây", "dựng", "nhà", "ở,", "thiết", "kế", "và", "thi", "công", "nội", "ngoại", "thất", "trọn", "gói.", "Sản", "xuất,", "nhập", "khẩu", "và", "mua", "bán", "sản", "phẩm,", "chất", "liệu", "nội", "ngoại", "thất", "giá", "tốt", "nhất", "thị", "trường.", "Trụ", "sở", "công", "ty:", "16", "Trần", "Bá", "Giao,", "phường", "5", "quận", "Gò", "Vấp", "Hotline:", "0909506808", "–", "0938836608", "–", "0938183383", "Fanpage:", "Tikita’s", "House", "–", "Kita", "Sofa", "–", "Kita", "Furniture", "–", "Kita", "Furniture", "Decoration" ] ]
[ [ "pt", "pt", "pt", "pt", "co", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "en", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "de", "co", "co", "co", "co", "co", "co", "co", "de", "fr", "de", "de", "de", "de", "fr", "fr", "fr", "fr", "co", "co", "pt", "pt", "pt", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "pt", "it", "co", "co", "co", "co", "co", "co", "co", "it", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "it", "it", "it", "es", "es", "es", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "co", "de", "de", "de", "de", "de", "co", "co", "en", "pt", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de" ], [ "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "en", "en", "en", "fr", "ro", "ro", "ro", "ro", "ro", "pt", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "en", "en", "fr", "fr", "fr", "fr", "fr", "fr", "co", "co", "co", "co", "co", "co", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "en", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "co", "co", "de", "co", "co", "co", "co", "co", "en", "en", "en", "co", "co", "co", "co", "co", "co", "en", "en", "en", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "co", "co", "de", "de", "de", "de", "en", "en", "de", "pt", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "pt", "pt", "pt", "co" ], [ "pt", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "pt", "co", "co", "co", "co", "co", "es", "es", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "ro", "ro", "co", "co", "co", "co", "co", "co", "co", "es", "es", "es", "co", "it", "it", "it", "it", "it", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "en", "en", "en", "it", "pt", "pt", "pt", "pt", "co", "de", "en", "en", "en", "de", "co", "co", "co", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "ro", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "ro", "ro", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "pt" ], [ "co", "co", "co", "co", "co", "co", "co", "de", "de", "en", "en", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "de", "de", "de", "fr", "fr", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "es", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "en", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "co", "co", "co", "co", "co", "fr", "fr", "fr", "fr", "de", "de", "en", "en", "en", "en", "de", "co", "de", "de", "co", "co", "co", "co", "co", "co", "fr", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "it", "it", "pt", "pt", "pt", "pt", "pt", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "es", "es", "es", "pt", "co", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "fr", "fr", "it", "it", "it", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "pt", "pt", "co", "co", "co", "co" ], [ "en", "en", "en", "en", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "pt", "pt", "co", "co", "co", "co", "co", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "de", "ro", "ro", "ro", "de", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "pt", "pt", "pt", "pt", "pt", "pt", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "de", "de", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "it", "it", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en" ] ]
[ [ [ "Sofa", "bọc", "da", "cao", "cấp", "chân", "gỗ", "giá", "rẻ", "Sofa", "bọc", "da", "Serena", "mang", "ý", "nghĩa", "của", "sự", "thanh", "khiết", "và", "nhẹ", "nhàng,", "thích", "hợp", "cho", "mọi", "không", "gian", "phòng", "khách.", "Bộ", "sofa", "với", "thiết", "kế", "tinh", "tế,", "đẹp", "mắt.", "Và", "màu", "sắc", "hướng", "về", "sự", "quý", "phái", "với", "các", "gam", "màu", "xám,", "xanh", "rêu,", "xanh", "dương", "đậm,….Hãy", "tậu", "ngay", "bộ", "ghế", "sofa", "bọc", "da", "cao", "cấp", "cho", "gia", "đình", "để", "có", "được", "phút", "giây", "thư", "giãn", "thoải", "mái", "nhất!", "Bộ", "ghế", "bọc", "da", "Serena", "được", "làm", "từ", "chất", "liệu", "nệm", "mút", "êm", "ái", "bên", "trong.", "Bên", "ngoài", "bọc", "bởi", "da", "cao", "cấp", "nhập", "khẩu", "mang", "đến", "sự", "sang", "trọng", "cho", "không", "gian.", "Nó", "còn", "đem", "lại", "sự", "thoải", "mái", "cho", "người", "sử", "dụng.", "Với", "giá", "thành", "sản", "phẩm", "mềm", "mại,", "phù", "hợp", "với", "kinh", "tế", "của", "nhiều", "gia", "đình.", "Sofa", "bọc", "da", "Serena", "–", "Sofa", "da", "giá", "rẻ", "siêu", "bền", "đẹp", "cho", "mọi", "gia", "đình", "Nội", "thất", "gia", "đình", "hiện", "đại", "thường", "thấy", "sự", "xuất", "hiện", "của", "bộ", "sofa", "da.", "Bởi", "lẽ", "món", "đồ", "nội", "thất", "này", "không", "chỉ", "có", "giá", "trị", "sử", "dụng", "mà", "còn", "là", "món", "đồ", "trang", "trí.", "Giúp", "tổng", "quan", "phòng", "khách", "trở", "nên", "hài", "hòa,", "thẩm", "mỹ", "nhất.", "Sofa", "da", "Serena", "là", "một", "siêu", "phẩm", "sofa", "với", "chất", "liệu", "nệm", "mút", "êm", "ái,", "độ", "bền", "cao.", "Và", "bên", "ngoài", "được", "bọc", "da", "hạng", "sang", "nhập", "khẩu.", "Sản", "phẩm", "cực", "kỳ", "được", "yêu", "thích", "tại", "Kita", "bởi", "khách", "hàng", "nhận", "định:", "+", "Giá", "thành", "rẻ", "Bộ", "ghế", "sofa", "da", "Serena", "tuy", "không", "được", "làm", "từ", "da", "động", "vật", "nhưng", "ch�" ] ], [ [ "��t", "liệu", "da", "bọc", "bên", "ngoài", "là", "hàng", "cao", "cấp", "nhập", "khẩu", "chính", "ngạch,", "giá", "thành", "rẻ", "hơn", "rất", "nhiều", "so", "với", "mua", "sofa", "da", "thật", "(sofa", "da", "thật", "lên", "đến", "cả", "trăm", "triệu", "một", "bộ).", "Do", "đó,", "sofa", "da", "công", "nghiệp", "được", "sử", "dụng", "rộng", "rãi", "hơn", "tại", "các", "hộ", "gia", "đình", "Việt.", "Từ", "thành", "thị", "đến", "nhiều", "hộ", "gia", "đình", "ở", "các", "vùng", "quê", "cũng", "yêu", "thích", "nội", "thất", "này.", "+", "Sofa", "bọc", "da", "có", "tính", "thẩm", "mỹ", "cao", "Từ", "kiểu", "dáng", "nhỏ", "gọn", "đến", "chất", "liệu", "tốt,", "đường", "may", "bắt", "mắt", "và", "khéo", "léo", "đã", "giúp", "mẫu", "ghế", "da", "Serena", "chiếm", "được", "thiện", "cảm", "của", "người", "tiêu", "dùng.", "Với", "công", "nghệ", "sản", "xuất", "ngày", "càng", "hiện", "đại,", "sofa", "da", "nhập", "khẩu", "ngày", "càng", "được", "làm", "giống", "với", "sofa", "da", "thật.", "Chỉ", "nhìn", "sơ", "rất", "khó", "phân", "biệt,", "điều", "này", "giúp", "sản", "phẩm", "có", "được", "tính", "thẩm", "mỹ", "cao", "hơn.", "+", "Sofa", "bọc", "da", "sang", "trọng", "và", "tinh", "tế", "Nếu", "như", "sofa", "vải", "hướng", "đến", "sự", "trẻ", "trung,", "năng", "động", "thì", "bộ", "ghế", "da", "lại", "hướng", "đến", "sự", "sang", "trọng", "và", "tinh", "tế.", "Những", "mẫu", "ghế", "sofa", "da", "được", "thiết", "kế", "trang", "nhã", "với", "màu", "sắc", "có", "thiên", "hướng", "đơn", "sắc,", "quý", "tộc", "như", "xanh", "rêu,", "xám,", "xanh", "dương", "đậm,", "màu", "đen,….", "+", "Độ", "bền", "tương", "đối", "tốt", "Sofa", "bọc", "da", "Serena", "cao", "cấp", "đương", "nhiên", "không", "thể", "nào", "so", "sánh", "với", "độ", "bền", "của", "sofa", "da", "thật", "100%.", "Tuy", "nhiên,", "sản", "phẩm", "cũng", "được", "đánh", "giá", "rất", "cao", "về", "độ", "�" ] ], [ [ "�m", "ái,", "độ", "đàn", "hồi", "và", "khả", "năng", "sử", "dụng", "lên", "đến", "hàng", "chục", "năm", "không", "hư", "hỏng", "do", "chất", "liệu", "được", "xử", "lý", "vô", "cùng", "kỹ", "lưỡng,", "bên", "ngoài", "bọc", "da", "nhập", "khẩu", "độ", "bền", "cao.", "+", "Dễ", "vệ", "sinh,", "không", "thấm", "nước", "Bộ", "bàn", "ghế", "sofa", "bọc", "da", "cao", "cấp", "là", "sự", "lựa", "chọn", "hoàn", "hảo", "cho", "các", "gia", "đình", "hiện", "nay,", "từ", "người", "độc", "thân", "đến", "các", "cặp", "vợ", "chồng", "trẻ,", "gia", "đình", "có", "con", "nhỏ", "và", "người", "cao", "tuổi", "bởi", "sản", "phẩm", "rất", "dễ", "vệ", "sinh", "khi", "không", "may", "bị", "lấm", "bẩn.", "Sofa", "không", "thấm", "nước", "và", "hạn", "chế", "được", "ẩm", "mốc,", "mùi", "hôi", "nên", "rất", "dễ", "chịu", "khi", "sử", "dụng.", "Bàn", "ghế", "gỗ", "sofa", "bọc", "da", "sẽ", "là", "nơi", "để", "gia", "đình", "tụ", "họp,", "là", "nơi", "nghỉ", "ngơi", "và", "thư", "giãn", "thoải", "mái", "để", "cả", "gia", "đình", "có", "thể", "gắn", "kết", "với", "nhau", "hơn!", "Mua", "một", "bộ", "sofa", "ưng", "ý", "sẽ", "giúp", "ích", "rất", "nhiều", "cho", "cuộc", "sống", "tiện", "nghi.", "➢", "Sofa", "bọc", "da", "Serena", "trở", "thành", "sự", "lựa", "chọn", "lý", "tưởng", "cho", "nhiều", "gia", "đình.", "Bạn", "đã", "ưng", "ý", "với", "màu", "sắc", "nào", "của", "sản", "phẩm", "này", "chưa?", "Liên", "hệ", "Kita", "hôm", "nay", "để", "được", "tư", "vấn", "chọn", "mua", "sản", "phẩm", "tốt", "với", "giá", "thành", "mềm", "nhất", "nhé!", "Những", "lý", "do", "bạn", "nên", "lựa", "chọn", "sofa", "bọc", "da", "ở", "Kita", "Furniture!", "Kita", "với", "nhiều", "năm", "trong", "lĩnh", "vực", "nội", "thất,", "mang", "đến", "khách", "hàng", "những", "bộ", "sofa", "với", "đa", "dạng", "mẫu", "mã,", "chất", "liệu", "với", "giá", "thành", "tốt", "nhất", "do", "phâ" ] ], [ [ "n", "phối", "trực", "tiếp", "không", "qua", "trung", "gian,", "nhanh", "chóng", "đưa", "sofa", "đến", "với", "khách", "hàng", "toàn", "quốc", "và", "bảo", "hành", "sản", "phẩm", "chuyên", "nghiệp", "nhất.", "Khi", "khách", "hàng", "chọn", "mua", "các", "mẫu", "ghế", "sofa", "bọc", "da", "tại", "đây", "đồng", "nghĩa", "với", "việc", "khách", "hàng", "có", "được", "những", "lợi", "ích:", "❉", "Cam", "kết", "chất", "lượng", "vượt", "trội", "Chất", "lượng", "sản", "phẩm", "luôn", "được", "đưa", "lên", "hàng", "đầu,", "quy", "trình", "sản", "xuất", "nghiêm", "ngặt.", "Với", "chất", "liệu", "da", "bọc", "nhập", "khẩu", "mang", "lại", "luồn", "gió", "mới", "cho", "sản", "phẩm", "sofa", "bọc", "da", "trên", "thị", "trường.", "Mang", "đến", "khách", "hàng", "những", "bộ", "sofa", "bọc", "da", "chất", "lượng", "và", "đẹp", "nhất!", "❉", "Quy", "trình", "sản", "xuất", "chính", "ngạch,", "đảm", "bảo", "vê", "sinh", "môi", "trường", "Chất", "liệu", "bên", "trong", "được", "làm", "từ", "nệm", "mút", "êm", "ái", "hay", "gỗ", "nhập", "khẩu", "như", "xoan,", "gỗ", "sồi,", "gỗ", "dầu", "được", "xử", "lý", "kỹ", "nhằm", "tránh", "mối", "mọt,", "hư", "hỏng", "nên", "tuổi", "thọ", "sản", "phẩm", "lên", "đến", "hàng", "chục", "năm.", "❉", "Nhân", "viên", "nhiệt", "tình,", "tư", "vấn", "tận", "tâm", "Nhân", "viên", "nhiệt", "tình", "sẵn", "sàng", "tư", "vấn,", "báo", "giá", "sofa", "bọc", "da", "chính", "xác", "nhất", "để", "khách", "hàng", "có", "được", "lựa", "chọn", "phù", "hợp.", "Nếu", "khách", "hàng", "muốn", "sofa", "cao", "cấp", "hơn,", "Kita", "có", "sofa", "da", "thật", "100%", "và", "nếu", "muốn", "sofa", "bình", "dân", "hơn,", "chúng", "tôi", "sẽ", "tư", "vấn", "sofa", "vải", "hoặc", "giả", "da", "với", "hàng", "nghìn", "mẫu", "mã", "cho", "khách", "hàng", "chọn", "lựa.", "❉", "Giá", "cạnh", "tranh,", "bán", "hàng", "toàn", "quốc", "Giao", "hàng", "nhanh", "chóng", "trên", "toàn", "qu" ] ], [ [ "ốc,", "đưa", "sofa", "chất", "lượng", "đến", "với", "khách", "hàng", "cả", "nước", "và", "đóng", "gói", "cẩn", "thận,", "gửi", "kèm", "tem", "phiếu", "bảo", "hành", "với", "thời", "gian", "bảo", "hành", "tùy", "vào", "từng", "sản", "phẩm", "mà", "có", "thể", "lên", "đến", "10-20", "năm.", "Liên", "hệ", "Kita", "ngay", "hôm", "nay", "để", "sở", "hữu", "Sofa", "bọc", "da", "Serena", "và", "hàng", "nghìn", "bộ", "sofa", "với", "đa", "dạng", "chất", "liệu", "nhé!", "Xem", "thêm", "nhiều", "mẫu", "sofa", "da", "khác", "tại", "ĐÂY", "Công", "ty", "TNHH", "Kiến", "Tạo", "và", "Kiệt", "Tác", "Kita", "Sky", "Xây", "dựng", "nhà", "ở,", "thiết", "kế", "và", "thi", "công", "nội", "ngoại", "thất", "trọn", "gói.", "Sản", "xuất,", "nhập", "khẩu", "và", "mua", "bán", "sản", "phẩm,", "chất", "liệu", "nội", "ngoại", "thất", "giá", "tốt", "nhất", "thị", "trường.", "Trụ", "sở", "công", "ty:", "16", "Trần", "Bá", "Giao,", "phường", "5", "quận", "Gò", "Vấp", "Hotline:", "0909506808", "–", "0938836608", "–", "0938183383", "Fanpage:", "Tikita’s", "House", "–", "Kita", "Sofa", "–", "Kita", "Furniture", "–", "Kita", "Furniture", "Decoration" ] ] ]
[ [ "pt" ], [ "co" ], [ "pt" ], [ "co" ], [ "en" ] ]
[ "mono" ]
[ [ "O", "general", "de", "Exército", "Luiz", "Eduardo", "Ramos", "Baptista", "Pereira,", "comandante", "militar", "do", "Sudeste,", "afirmou", "no", "início", "da", "tarde", "de", "hoje", "que", "os", "80", "tiros", "disparados", "disparados", "por", "militares", "de", "uma", "patrulha", "do", "Exército", "que", "deixaram", "dois", "inocentes", "mortos", "e", "um", "ferido", "no", "Rio", "de", "Janeiro,", "no", "dia", "7,", "não", "foi", "um", "assassinato.", "\"Houve", "uma", "fatalidade.", "O", "pessoal", "tem", "colocado", "assassinato,", "não", "é\",", "afirmou", "o", "general", "aos", "jornalistas", "que", "acompanhavam", "a", "cerimônia", "do", "Dia", "do", "Exército,", "no", "Quartel", "General", "da", "Força", "em", "São", "Paulo.", "\"Os", "soldados", "que", "estavam", "em", "missão", "na", "parte", "da", "manhã", "tinham", "sido", "emboscados.", "Quem", "como", "eu", "já", "esteve", "em", "uma", "situação", "dessa,", "de", "muita", "tensão,", "muito", "difícil...", "A", "gente,", "para", "julgar", "o", "que", "aconteceu,", "tem", "que", "esperar", "as", "investigações.\"", "Até", "o", "momento", "as", "investigações,", "iniciadas", "pela", "Polícia", "Civil", "e", "depois", "assumidas", "pelo", "Exército,", "apontam", "que", "os", "soldados", "confundiram", "o", "carro", "alvejado", "com", "um", "ocupado", "por", "bandidos", "que", "tinham", "atacado", "a", "tropa", "mais", "cedo.", "O", "músico", "Evaldo", "Rosa", "dos", "Santos,", "51,", "estava", "no", "veículo", "a", "caminho", "de", "um", "chá", "de", "bebê", "com", "a", "mulher,", "o", "filho", "de", "7", "anos,", "o", "sogro", "e", "um", "enteado.", "Ele", "morreu", "na", "hora", "na", "frente", "da", "família.", "Seu", "sogro", "segue", "internado", "no", "hospital.", "Nove", "soldados", "do", "Exército", "estão", "presos", "pelo", "crime.", "O", "catador", "de", "materiais", "recicláveis", "Luciano", "Macedo,", "que", "tentou", "chegar", "ao", "carro", "para", "ajudar", "as", "vítimas", "dos", "disparos", "do", "Exército,", "também", "foi", "metralhado,", "estava", "em", "estado", "grave", "no", "hospital", "e", "morreu", "nessa", "madrugada.", "Ele", "deixou", "uma", "mulher", "grávida.", "\"Eu", "fui", "comandante", "das", "tropas", "no", "Haiti", "em", "2012.", "Fiquei", "um", "ano", "comandando", "19", "países", "e", "situações", "extremamente", "graves:", "tiroteio", "quase", "todo", "dia...", "Posteriormente", "fui", "o", "responsável", "pela", "segurança", "da", "Copa", "do", "Mundo,", "e", "depois", "trabalhei", "junto", "ao", "ministro", "da", "Defesa", "na", "Olimpíada.", "São", "situações", "que", "a", "gente", "vivencia,", "extremamente", "difíceis", "e", "complexas...", "É", "uma", "fatalidade\",", "explicou", "o", "comandante", "militar", "do", "Sudeste.", "Apesar", "disso,", "o", "general", "lamentou", "o", "episódio.", "\"É", "muito", "triste,", "lastimável.", "a", "gente", "não", "tem", "palavras", "para", "falar\",", "afirmou.", "\"Nós", "vamos", "dar", "uma", "resposta", "para", "o", "que", "aconteceu.", "Agora,", "é", "uma", "tristeza", "enorme,", "é", "a", "esposa,", "mãe...", "ninguém", "pode", "dizer", "que", "não", "é", "uma", "tristeza", "enorme,", "eu", "como", "cidadão", "fardado,", "a", "gente", "fica", "extremamente", "sentido.", "Que", "tenham", "força", "e", "que", "a", "gente", "vai", "dar", "uma", "resposta", "para", "o", "que", "aconteceu.\"", "Bolsonaro,", "que", "participou", "da", "cerimônia", "nesta", "quinta-feira", "em", "São", "Paulo", "ao", "lado", "do", "general", "Ramos,", "já", "havia", "declarado", "sobre", "o", "episódio", "que", "\"o", "Exército", "não", "matou", "ninguém\",", "e", "que", "o", "caso", "foi", "um", "\"incidente\".", "Sobre", "a", "morte", "da", "segunda", "vítima", "dos", "tiros", "do", "Exército,", "o", "presidente", "não", "pronunciou-se", "até", "o", "início", "da", "tarde", "de", "quinta-feira." ] ]
[ [ "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "es", "es", "es", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt" ] ]
[ [ [ "O", "general", "de", "Exército", "Luiz", "Eduardo", "Ramos", "Baptista", "Pereira,", "comandante", "militar", "do", "Sudeste,", "afirmou", "no", "início", "da", "tarde", "de", "hoje", "que", "os", "80", "tiros", "disparados", "disparados", "por", "militares", "de", "uma", "patrulha", "do", "Exército", "que", "deixaram", "dois", "inocentes", "mortos", "e", "um", "ferido", "no", "Rio", "de", "Janeiro,", "no", "dia", "7,", "não", "foi", "um", "assassinato.", "\"Houve", "uma", "fatalidade.", "O", "pessoal", "tem", "colocado", "assassinato,", "não", "é\",", "afirmou", "o", "general", "aos", "jornalistas", "que", "acompanhavam", "a", "cerimônia", "do", "Dia", "do", "Exército,", "no", "Quartel", "General", "da", "Força", "em", "São", "Paulo.", "\"Os", "soldados", "que", "estavam", "em", "missão", "na", "parte", "da", "manhã", "tinham", "sido", "emboscados.", "Quem", "como", "eu", "já", "esteve", "em", "uma", "situação", "dessa,", "de", "muita", "tensão,", "muito", "difícil...", "A", "gente,", "para", "julgar", "o", "que", "aconteceu,", "tem", "que", "esperar", "as", "investigações.\"", "Até", "o", "momento", "as", "investigações,", "iniciadas", "pela", "Polícia", "Civil", "e", "depois", "assumidas", "pelo", "Exército,", "apontam", "que", "os", "soldados", "confundiram", "o", "carro", "alvejado", "com", "um", "ocupado", "por", "bandidos", "que", "tinham", "atacado", "a", "tropa", "mais", "cedo.", "O", "músico", "Evaldo", "Rosa", "dos", "Santos,", "51,", "estava", "no", "veículo", "a", "caminho", "de", "um", "chá", "de", "bebê", "com", "a", "mulher,", "o", "filho", "de", "7", "anos,", "o", "sogro", "e", "um", "enteado.", "Ele", "morreu", "na", "hora", "na", "frente", "da", "família.", "Seu", "sogro", "segue", "internado", "no", "hospital.", "Nove", "soldados", "do", "Exército", "estão", "presos", "pelo", "crime.", "O", "catador", "de", "materiais", "recicláveis", "Luciano", "Macedo,", "que", "tentou", "chegar", "ao", "carro", "para", "ajudar", "as", "vítimas", "dos", "disparos", "do", "Exército,", "também", "foi", "metralhado,", "estava", "em", "estado", "grave", "no", "hospital", "e", "morreu", "nessa", "madrugada.", "Ele", "deixou", "uma", "mulher", "grávida.", "\"Eu", "fui", "comandante", "das", "tropas", "no", "Haiti", "em", "2012.", "Fiquei", "um", "ano", "comandando", "19", "países", "e", "situações", "extremamente", "graves:", "tiroteio", "quase", "todo", "dia...", "Posteriormente", "fui", "o", "responsável", "pela", "segurança", "da", "Copa", "do", "Mundo,", "e", "depois", "trabalhei", "junto", "ao", "ministro", "da", "Defesa", "na", "Olimpíada.", "São", "situações", "que", "a", "gente", "vivencia,", "extremamente", "difíceis", "e", "complexas...", "É", "uma", "fatalidade\",", "explicou", "o", "comandante", "militar", "do", "Sudeste.", "Apesar", "disso,", "o", "general", "lamentou", "o", "episódio.", "\"É", "muito", "triste,", "lastimável.", "a", "gente", "não", "tem", "palavras", "para", "falar\",", "afirmou.", "\"Nós", "vamos", "dar", "uma", "resposta", "para", "o", "que", "aconteceu.", "Agora,", "é", "uma", "tristeza", "enorme,", "é", "a", "esposa,", "mãe...", "ninguém", "pode", "dizer", "que", "não", "é", "uma", "tristeza", "enorme,", "eu", "como", "cidadão", "fardado,", "a", "gente", "fica", "extremamente", "sentido.", "Que", "tenham", "força", "e", "que", "a", "gente", "vai", "dar", "uma", "resposta", "para", "o", "que", "aconteceu.\"", "Bolsonaro,", "que", "participou", "da", "cerimônia", "nesta", "quinta-feira", "em", "São", "Paulo", "ao", "lado", "do", "general", "Ramos,", "já", "havia", "declarado", "sobre", "o", "episódio", "que", "\"o", "Exército", "não", "matou", "ninguém\",", "e", "que", "o", "caso", "foi", "um", "\"incidente\".", "Sobre", "a", "morte", "da", "segunda", "vítima", "dos", "tiros", "do", "Exército,", "o", "presidente", "não", "pronunciou-se", "até", "o", "início", "da", "tarde", "de", "quinta-feira." ] ] ]
[ [ "pt" ] ]
[ "mono" ]
[ [ "Indonesian", "police", "say", "they", "have", "detained", "a", "French", "man", "who", "trespassed", "on", "a", "military", "base", "while", "playing", "the", "augmented", "reality", "game", "Pokémon", "Go.", "A", "spokesman", "for", "West", "Java", "police", "said", "Romain", "Pierre,", "27,", "was", "caught", "at", "a", "checkpoint", "on", "Monday", "evening", "after", "initially", "running", "away", "when", "challenged", "by", "security", "guards", "at", "the", "military", "complex", "in", "Cirebon.", "Pierre", "was", "released", "a", "few", "hours", "later", "because", "it", "became", "apparent", "“he", "unintentionally", "entered", "the", "complex", "as", "he", "was", "hunting", "Pokémon", "while", "jogging,”", "the", "police", "spokesman,", "Col", "Yusri", "Yunus,", "said", "on", "Tuesday.", "“Pokémon", "Go,”", "which", "uses", "Google", "Maps", "and", "a", "smartphone", "to", "overlay", "reality", "with", "Pokémon", "creatures,", "has", "been", "a", "blockbuster", "hit", "in", "the", "US", "and", "other", "countries", "where", "it", "is", "available.", "It", "has", "not", "been", "officially", "released", "in", "Indonesia", "but", "is", "already", "popular.", "The", "cabinet", "secretary,", "Pramono", "Agung,", "told", "reporters", "last", "week", "he", "had", "captured", "a", "number", "of", "Pokémon", "at", "the", "presidential", "palace", "in", "Jakarta,", "the", "Indonesian", "capital.", "The", "governor", "of", "Jakarta", "has", "said", "it", "could", "be", "used", "to", "boost", "tourism", "to", "the", "city.", "But", "some", "security", "officials", "have", "voiced", "worries", "that", "the", "game", "could", "pose", "a", "security", "threat.", "Police", "said", "Pierre", "works", "for", "a", "company", "in", "Jakarta", "and", "was", "visiting", "Cirebon,", "about", "190km", "(118", "miles)", "east", "of", "the", "capital." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Indonesian", "police", "say", "they", "have", "detained", "a", "French", "man", "who", "trespassed", "on", "a", "military", "base", "while", "playing", "the", "augmented", "reality", "game", "Pokémon", "Go.", "A", "spokesman", "for", "West", "Java", "police", "said", "Romain", "Pierre,", "27,", "was", "caught", "at", "a", "checkpoint", "on", "Monday", "evening", "after", "initially", "running", "away", "when", "challenged", "by", "security", "guards", "at", "the", "military", "complex", "in", "Cirebon.", "Pierre", "was", "released", "a", "few", "hours", "later", "because", "it", "became", "apparent", "“he", "unintentionally", "entered", "the", "complex", "as", "he", "was", "hunting", "Pokémon", "while", "jogging,”", "the", "police", "spokesman,", "Col", "Yusri", "Yunus,", "said", "on", "Tuesday.", "“Pokémon", "Go,”", "which", "uses", "Google", "Maps", "and", "a", "smartphone", "to", "overlay", "reality", "with", "Pokémon", "creatures,", "has", "been", "a", "blockbuster", "hit", "in", "the", "US", "and", "other", "countries", "where", "it", "is", "available.", "It", "has", "not", "been", "officially", "released", "in", "Indonesia", "but", "is", "already", "popular.", "The", "cabinet", "secretary,", "Pramono", "Agung,", "told", "reporters", "last", "week", "he", "had", "captured", "a", "number", "of", "Pokémon", "at", "the", "presidential", "palace", "in", "Jakarta,", "the", "Indonesian", "capital.", "The", "governor", "of", "Jakarta", "has", "said", "it", "could", "be", "used", "to", "boost", "tourism", "to", "the", "city.", "But", "some", "security", "officials", "have", "voiced", "worries", "that", "the", "game", "could", "pose", "a", "security", "threat.", "Police", "said", "Pierre", "works", "for", "a", "company", "in", "Jakarta", "and", "was", "visiting", "Cirebon,", "about", "190km", "(118", "miles)", "east", "of", "the", "capital." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Baltimore", "ex-mayor", "charged", "with", "perjury", "by", "state", "prosecutor", "Baltimore's", "disgraced", "ex-mayor", "has", "been", "charged", "with", "perjury", "for", "failing", "to", "disclose", "her", "business", "interest", "in", "a", "self-published", "children's", "book", "ANNAPOLIS,", "Md.", "--", "Baltimore's", "disgraced", "ex-mayor", "has", "been", "charged", "with", "perjury", "for", "failing", "to", "disclose", "her", "business", "interest", "in", "a", "self-published", "children's", "book,", "Maryland's", "state", "prosecutor", "announced", "Wednesday.", "Catherine", "Pugh,", "a", "Democrat", "who", "has", "pleaded", "guilty", "to", "federal", "charges", "related", "to", "her", "“Healthy", "Holly”", "books,", "failed", "to", "disclose", "her", "business", "interest", "in", "Health", "Holly,", "LLC", "on", "her", "financial", "disclosure", "forms", "when", "she", "was", "a", "Maryland", "state", "senator", "representing", "a", "Baltimore", "district.", "Already", "facing", "the", "possibility", "of", "decades", "behind", "bars,", "the", "new", "charge", "carries", "a", "penalty", "of", "up", "to", "10", "years", "in", "prison.", "“Transparency", "from", "our", "elected", "officials", "is", "an", "essential", "aspect", "of", "protecting", "Maryland", "residents", "from", "corruption", "and", "political", "malfeasance,”", "said", "Charlton", "Howard,", "the", "state", "prosecutor,", "in", "a", "statement.", "“Our", "office", "is", "committed", "to", "ensuring", "that", "those", "who", "abuse", "positions", "of", "trust", "in", "our", "state", "and", "local", "governments", "are", "held", "accountable", "by", "the", "State", "of", "Maryland.”", "The", "charges,", "filed", "in", "Anne", "Arundel", "County", "Circuit", "Court,", "allege", "that", "while", "Pugh", "did", "disclose", "her", "business", "relationship", "to", "other", "companies", "that", "she", "owned", "or", "operated,", "she", "did", "not", "disclose", "her", "interest", "in", "Health", "Holly.", "Pugh", "earned", "at", "least", "$345,000", "in", "income", "in", "2016", "through", "sales", "of", "her", "books,", "but", "failed", "to", "mention", "her", "ownership", "in", "financial", "disclosure", "forms,", "which", "are", "filed", "with", "the", "Maryland", "State", "Ethics", "Commission", "and", "signed", "under", "the", "penalties", "of", "perjury.", "Last", "month,", "Pugh", "pleaded", "guilty", "to", "four", "counts", "of", "conspiracy", "and", "tax", "evasion", "in", "federal", "court", "to", "charges", "relating", "to", "the", "book", "deals.", "Pugh", "resigned", "in", "May", "as", "federal,", "state", "and", "local", "authorities", "probed", "whether", "she", "arranged", "bulk", "book", "sales", "to", "disguise", "political", "kickbacks", "that", "netted", "her", "hundreds", "of", "thousands", "of", "dollars", "over", "the", "years.", "The", "books", "were", "meant", "for", "schools", "and", "day", "care", "centers." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Baltimore", "ex-mayor", "charged", "with", "perjury", "by", "state", "prosecutor", "Baltimore's", "disgraced", "ex-mayor", "has", "been", "charged", "with", "perjury", "for", "failing", "to", "disclose", "her", "business", "interest", "in", "a", "self-published", "children's", "book", "ANNAPOLIS,", "Md.", "--", "Baltimore's", "disgraced", "ex-mayor", "has", "been", "charged", "with", "perjury", "for", "failing", "to", "disclose", "her", "business", "interest", "in", "a", "self-published", "children's", "book,", "Maryland's", "state", "prosecutor", "announced", "Wednesday.", "Catherine", "Pugh,", "a", "Democrat", "who", "has", "pleaded", "guilty", "to", "federal", "charges", "related", "to", "her", "“Healthy", "Holly”", "books,", "failed", "to", "disclose", "her", "business", "interest", "in", "Health", "Holly,", "LLC", "on", "her", "financial", "disclosure", "forms", "when", "she", "was", "a", "Maryland", "state", "senator", "representing", "a", "Baltimore", "district.", "Already", "facing", "the", "possibility", "of", "decades", "behind", "bars,", "the", "new", "charge", "carries", "a", "penalty", "of", "up", "to", "10", "years", "in", "prison.", "“Transparency", "from", "our", "elected", "officials", "is", "an", "essential", "aspect", "of", "protecting", "Maryland", "residents", "from", "corruption", "and", "political", "malfeasance,”", "said", "Charlton", "Howard,", "the", "state", "prosecutor,", "in", "a", "statement.", "“Our", "office", "is", "committed", "to", "ensuring", "that", "those", "who", "abuse", "positions", "of", "trust", "in", "our", "state", "and", "local", "governments", "are", "held", "accountable", "by", "the", "State", "of", "Maryland.”", "The", "charges,", "filed", "in", "Anne", "Arundel", "County", "Circuit", "Court,", "allege", "that", "while", "Pugh", "did", "disclose", "her", "business", "relationship", "to", "other", "companies", "that", "she", "owned", "or", "operated,", "she", "did", "not", "disclose", "her", "interest", "in", "Health", "Holly.", "Pugh", "earned", "at", "least", "$345,000", "in", "income", "in", "2016", "through", "sales", "of", "her", "books,", "but", "failed", "to", "mention", "her", "ownership", "in", "financial", "disclosure", "forms,", "which", "are", "filed", "with", "the", "Maryland", "State", "Ethics", "Commission", "and", "signed", "under", "the", "penalties", "of", "perjury.", "Last", "month,", "Pugh", "pleaded", "guilty", "to", "four", "counts", "of", "conspiracy", "and", "tax", "evasion", "in", "federal", "court", "to", "charges", "relating", "to", "the", "book", "deals.", "Pugh", "resigned", "in", "May", "as", "federal,", "state", "and", "local", "authorities", "probed", "whether", "she", "arranged", "bulk", "book", "sales", "to", "disguise", "political", "kickbacks", "that", "netted", "her", "hundreds", "of", "thousands", "of", "dollars", "over", "the", "years.", "The", "books", "were", "meant", "for", "schools", "and", "day", "care", "centers." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "After", "nearly", "two", "months", "in", "hospital,", "longtime", "Liberal", "MP", "Dominic", "LeBlanc", "can", "return", "home", "to", "New", "Brunswick", "after", "a", "stem", "cell", "transplant.", "The", "MP", "for", "the", "riding", "of", "Beauséjour", "took", "a", "step", "back", "from", "his", "cabinet", "duties", "as", "minister", "for", "intergovernmental", "affairs", "and", "northern", "affairs", "in", "April", "to", "focus", "on", "the", "treatment", "he", "was", "getting", "for", "non-Hodgkin's", "lymphoma.", "LeBlanc", "released", "a", "statement", "today", "saying", "that", "he", "underwent", "a", "stem", "cell", "transplant", "Sept.", "18", "and", "was", "released", "yesterday.", "He", "thanked", "his", "constituents,", "who", "re-elected", "LeBlanc", "for", "the", "seventh", "straight", "time", "last", "month,", "for", "their", "understanding.", "\"I", "am", "feeling", "stronger", "every", "day", "and", "very", "much", "looking", "forward", "to", "returning", "to", "New", "Brunswick", "as", "soon", "as", "possible,\"", "he", "wrote.", "In", "a", "joint", "statement,", "Dr.", "Silvy", "Lachance", "from", "the", "Maisonneuve-Rosemont", "hospital", "said", "the", "transplant", "went", "well", "and", "there", "were", "no", "unusual", "complications.", "LeBlanc", "travelled", "to", "the", "Montreal", "hospital", "in", "early", "September,", "missing", "most", "of", "the", "campaign.", "He", "was", "diagnosed", "with", "lymphocytic", "lymphoma", "in", "2017,", "when", "he", "was", "fisheries", "minister.", "Last", "year,", "he", "announced", "that", "his", "cancer", "was", "in", "remission." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "After", "nearly", "two", "months", "in", "hospital,", "longtime", "Liberal", "MP", "Dominic", "LeBlanc", "can", "return", "home", "to", "New", "Brunswick", "after", "a", "stem", "cell", "transplant.", "The", "MP", "for", "the", "riding", "of", "Beauséjour", "took", "a", "step", "back", "from", "his", "cabinet", "duties", "as", "minister", "for", "intergovernmental", "affairs", "and", "northern", "affairs", "in", "April", "to", "focus", "on", "the", "treatment", "he", "was", "getting", "for", "non-Hodgkin's", "lymphoma.", "LeBlanc", "released", "a", "statement", "today", "saying", "that", "he", "underwent", "a", "stem", "cell", "transplant", "Sept.", "18", "and", "was", "released", "yesterday.", "He", "thanked", "his", "constituents,", "who", "re-elected", "LeBlanc", "for", "the", "seventh", "straight", "time", "last", "month,", "for", "their", "understanding.", "\"I", "am", "feeling", "stronger", "every", "day", "and", "very", "much", "looking", "forward", "to", "returning", "to", "New", "Brunswick", "as", "soon", "as", "possible,\"", "he", "wrote.", "In", "a", "joint", "statement,", "Dr.", "Silvy", "Lachance", "from", "the", "Maisonneuve-Rosemont", "hospital", "said", "the", "transplant", "went", "well", "and", "there", "were", "no", "unusual", "complications.", "LeBlanc", "travelled", "to", "the", "Montreal", "hospital", "in", "early", "September,", "missing", "most", "of", "the", "campaign.", "He", "was", "diagnosed", "with", "lymphocytic", "lymphoma", "in", "2017,", "when", "he", "was", "fisheries", "minister.", "Last", "year,", "he", "announced", "that", "his", "cancer", "was", "in", "remission." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Cloth", "Diaper", "Fanatic!", "You", "live,", "breath,", "and", "hope", "to", "buried", "with", "your", "cloth", "diaper", "stash.", "This", "Reward", "is", "for", "you!", "A", "day", "with", "the", "Inventor", "of", "Boingo!", "Not", "just", "any", "day!", "A", "spa", "day", "in", "luxury", "with", "Stacee", "Magee,", "the", "inventor", "of", "Boingo", "Baby.", "Then", "enjoy", "a", "relaxing", "lunch", "and", "finish", "with", "a", "jeep", "tour", "of", "Sedona,", "AZ!", "(Travel", "to", "Arizona", "not", "included)", "Receive", "one", "each", "of", "our", "new", "prints,", "as", "well", "as", "one", "each", "of", "our", "other", "rewards", "Less" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Cloth", "Diaper", "Fanatic!", "You", "live,", "breath,", "and", "hope", "to", "buried", "with", "your", "cloth", "diaper", "stash.", "This", "Reward", "is", "for", "you!", "A", "day", "with", "the", "Inventor", "of", "Boingo!", "Not", "just", "any", "day!", "A", "spa", "day", "in", "luxury", "with", "Stacee", "Magee,", "the", "inventor", "of", "Boingo", "Baby.", "Then", "enjoy", "a", "relaxing", "lunch", "and", "finish", "with", "a", "jeep", "tour", "of", "Sedona,", "AZ!", "(Travel", "to", "Arizona", "not", "included)", "Receive", "one", "each", "of", "our", "new", "prints,", "as", "well", "as", "one", "each", "of", "our", "other", "rewards", "Less" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Liverpool", "legend", "Jamie", "Carragher", "has", "underlined", "the", "importance", "of", "Sadio", "Mane", "to", "Jurgen", "Klopp's", "title", "challengers", "by", "claiming", "he'd", "rather", "lose", "Mohamed", "Salah", "than", "the", "Senegalese", "star.", "Salah", "is", "considered", "the", "Reds", "talisman", "after", "scoring", "more", "than", "50", "Premier", "League", "goals", "in", "just", "two", "seasons", "at", "Anfield.", "But", "when", "Carragher", "was", "asked", "if", "he", "had", "to", "hypothetically", "lose", "one", "of", "Mane", "or", "Salah,", "he", "immediately", "replied:", "'Salah.'", "Jamie", "Carragher", "believes", "Sadio", "Mane", "is", "more", "important", "than", "Mohamed", "Salah", "to", "Liverpool", "Speaking", "on", "Monday", "Night", "Football", "ahead", "of", "Arsenal's", "trip", "to", "Watford,", "Carragher", "hailed", "the", "former", "Southampton", "man", "as", "the", "catalyst", "of", "Liverpool's", "transformation", "under", "Jurgen", "Klopp.", "He", "said:", "'I'm", "a", "massive", "fan", "of", "Mane.", "People", "talk", "about", "Jurgen", "Klopp,", "the", "signings", "of", "Salah,", "Van", "Dijk,", "unbelievable.", "'Mane", "is", "the", "one", "that", "got", "Liverpool", "back.", "If", "you", "think,", "he", "was", "Klopp's", "first", "big", "signing,", "paid", "£30m.", "'He", "was", "the", "signing", "that", "got", "Liverpool", "into", "the", "top", "four.", "The", "next", "season", "it", "was", "the", "Champions", "League", "final,", "this", "season", "it's", "challenging", "for", "the", "title.'", "Mane", "and", "Salah", "were", "on", "the", "scoresheet", "during", "Liverpool’s", "2-0", "win", "over", "Chelsea", "on", "Sunday", "Carragher", "also", "highlighted", "the", "importance", "of", "Mane's", "goals", "this", "season.", "He", "scored", "in", "the", "crucial", "wins", "over", "Crystal", "Palace,", "Chelsea,", "Fulham", "and", "Burnley", "as", "well", "as", "helping", "his", "side", "collect", "important", "points", "against", "Leicester", "and", "West", "Ham.", "He", "added:", "'It's", "not", "just", "scoring,", "being", "top", "of", "the", "charts,", "getting", "goals", "when", "it's", "4-0", "and", "banging", "a", "couple", "in", "at", "the", "end", "of", "the", "game,", "it's", "the", "importance", "of", "the", "goals", "Mane", "is", "getting.", "'You", "think", "about", "it", "and", "I", "think", "sometimes", "he", "goes", "under", "the", "radar.", "You've", "got", "Salah,", "Van", "Dijk", "at", "the", "back,", "the", "goalkeeper.", "'Liverpool", "are", "going", "for", "a", "first", "title", "in", "almost", "30", "years.", "He's", "the", "best", "wide", "player", "Liverpool", "have", "had", "for", "30", "years.", "'You", "have", "to", "go", "back", "to", "John", "Barnes", "since", "Liverpool", "have", "had", "a", "wide", "player", "like", "that.'" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Liverpool", "legend", "Jamie", "Carragher", "has", "underlined", "the", "importance", "of", "Sadio", "Mane", "to", "Jurgen", "Klopp's", "title", "challengers", "by", "claiming", "he'd", "rather", "lose", "Mohamed", "Salah", "than", "the", "Senegalese", "star.", "Salah", "is", "considered", "the", "Reds", "talisman", "after", "scoring", "more", "than", "50", "Premier", "League", "goals", "in", "just", "two", "seasons", "at", "Anfield.", "But", "when", "Carragher", "was", "asked", "if", "he", "had", "to", "hypothetically", "lose", "one", "of", "Mane", "or", "Salah,", "he", "immediately", "replied:", "'Salah.'", "Jamie", "Carragher", "believes", "Sadio", "Mane", "is", "more", "important", "than", "Mohamed", "Salah", "to", "Liverpool", "Speaking", "on", "Monday", "Night", "Football", "ahead", "of", "Arsenal's", "trip", "to", "Watford,", "Carragher", "hailed", "the", "former", "Southampton", "man", "as", "the", "catalyst", "of", "Liverpool's", "transformation", "under", "Jurgen", "Klopp.", "He", "said:", "'I'm", "a", "massive", "fan", "of", "Mane.", "People", "talk", "about", "Jurgen", "Klopp,", "the", "signings", "of", "Salah,", "Van", "Dijk,", "unbelievable.", "'Mane", "is", "the", "one", "that", "got", "Liverpool", "back.", "If", "you", "think,", "he", "was", "Klopp's", "first", "big", "signing,", "paid", "£30m.", "'He", "was", "the", "signing", "that", "got", "Liverpool", "into", "the", "top", "four.", "The", "next", "season", "it", "was", "the", "Champions", "League", "final,", "this", "season", "it's", "challenging", "for", "the", "title.'", "Mane", "and", "Salah", "were", "on", "the", "scoresheet", "during", "Liverpool’s", "2-0", "win", "over", "Chelsea", "on", "Sunday", "Carragher", "also", "highlighted", "the", "importance", "of", "Mane's", "goals", "this", "season.", "He", "scored", "in", "the", "crucial", "wins", "over", "Crystal", "Palace,", "Chelsea,", "Fulham", "and", "Burnley", "as", "well", "as", "helping", "his", "side", "collect", "important", "points", "against", "Leicester", "and", "West", "Ham.", "He", "added:", "'It's", "not", "just", "scoring,", "being", "top", "of", "the", "charts,", "getting", "goals", "when", "it's", "4-0", "and", "banging", "a", "couple", "in", "at", "the", "end", "of", "the", "game,", "it's", "the", "importance", "of", "the", "goals", "Mane", "is", "getting.", "'You", "think", "about", "it", "and", "I", "think", "sometimes", "he", "goes", "under", "the", "radar.", "You've", "got", "Salah,", "Van", "Dijk", "at", "the", "back,", "the", "goalkeeper.", "'Liverpool", "are", "going", "for", "a", "first", "title", "in", "almost", "30", "years.", "He's", "the", "best", "wide", "player", "Liverpool", "have", "had", "for", "30", "years.", "'You", "have", "to", "go", "back", "to", "John", "Barnes", "since", "Liverpool", "have", "had", "a", "wide", "player", "like", "that.'" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "During", "its", "final", "meeting", "of", "the", "year", "—", "and", "with", "five", "members", "taking", "their", "final", "votes", "as", "council", "members", "—", "the", "Minneapolis", "city", "council", "approved", "a", "$10,000", "raise", "for", "the", "next", "mayor", "and", "members", "of", "the", "next", "city", "council.", "The", "resolution", "also", "put", "the", "mayor", "and", "council", "members", "on", "a", "schedule", "to", "get", "annual", "raises", "over", "the", "next", "four", "years,", "in", "line", "with", "raises", "granted", "city", "employees", "through", "collective", "bargaining.", "Current", "Mayor", "Betsy", "Hodges", "is", "paid", "$116,528", "a", "year.", "Mayor-elect", "Jacob", "Frey", "will", "be", "paid", "$126,528.", "Starting", "in", "January,", "council", "members", "will", "be", "paid", "at", "a", "rate", "of", "$98,696,", "up", "from", "the", "current", "pay", "of", "$88,695.", "The", "pay", "raise", "resolution", "was", "not", "on", "the", "council’s", "pre-meeting", "agenda", "and", "the", "resolution", "had", "not", "passed", "through", "the", "Ways", "and", "Means", "Committee", "or", "any", "other", "standing", "committees.", "It", "was", "also", "not", "subject", "to", "public", "comment.", "Instead,", "it", "was", "walked", "onto", "the", "final", "meeting", "agenda", "at", "the", "beginning", "of", "the", "December", "15", "meeting", "by", "Council", "President", "Barbara", "Johnson.", "The", "motion", "passed", "on", "a", "unanimous", "voice", "vote.", "Council", "Member", "Abdi", "Warsame", "was", "absent.", "Article", "continues", "after", "advertisement", "“We", "talked", "before", "how", "challenging", "this", "work", "can", "be,”", "Johnson", "said,", "referencing", "the", "ceremonies", "earlier", "in", "the", "meeting", "honoring", "outgoing", "council", "members", "and", "Hodges.", "“We", "have", "fallen", "behind,", "as", "council", "members,", "in", "some", "really", "challenging", "times.”", "During", "the", "Great", "Recession,", "neither", "elected", "officials", "nor", "city", "workers", "received", "raises.", "Those", "workers", "—", "both", "management", "and", "union-represented", "—", "have", "received", "raises", "in", "the", "last", "several", "budgets,", "while", "the", "council", "and", "mayor", "have", "not,", "Johnson", "said.", "The", "proposed", "raise", "would", "put", "Minneapolis", "council", "members’", "pay", "on", "par", "with", "those", "in", "Denver", "and", "Boston", "but", "behind", "Portland", "and", "Seattle.", "St.", "Paul", "pays", "its", "mayor", "$126,000.", "Hennepin", "County", "commissioners", "made", "$110,796", "this", "year", "and", "will", "make", "$113,566", "in", "2018.", "Commissioner", "Jeff", "Johnson", "took", "a", "salary", "of", "$108,093", "this", "year", "and", "will", "keep", "that", "pay", "level", "in", "2018.", "On", "Dec.", "8,", "council", "approved", "its", "$1.4", "billion", "budget", "for", "2018,", "which", "did", "not", "contain", "money", "for", "the", "elected", "officials’", "pay", "raises.", "To", "account", "for", "the", "$140,000", "lump-sum", "needed", "for", "the", "pay", "hike,", "the", "budget", "had", "to", "be", "amended;", "the", "resolution", "granting", "the", "raises", "did", "so", "by", "taking", "$50,000", "from", "the", "City", "Coordinator’s", "budget;", "$30,000", "from", "Finance", "and", "Property", "Services;", "$10,000", "from", "the", "City", "Clerk;", "$10,000", "from", "the", "Health", "Department;", "$20,000", "from", "Community", "Planning", "and", "Economic", "Services;", "$10,000", "from", "Human", "Resources;", "and", "$10,000", "from", "Regulatory", "Services.", "Correction:", "Jacob", "Frey", "returned", "to", "the", "council", "dais", "just", "before", "the", "voice", "vote", "was", "taken", "on", "the", "pay", "raise.", "He", "voted", "yes.", "This", "story", "originally", "stated", "that", "Frey", "had", "left", "the", "meeting", "and", "did", "not", "vote", "for", "the", "raise." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "During", "its", "final", "meeting", "of", "the", "year", "—", "and", "with", "five", "members", "taking", "their", "final", "votes", "as", "council", "members", "—", "the", "Minneapolis", "city", "council", "approved", "a", "$10,000", "raise", "for", "the", "next", "mayor", "and", "members", "of", "the", "next", "city", "council.", "The", "resolution", "also", "put", "the", "mayor", "and", "council", "members", "on", "a", "schedule", "to", "get", "annual", "raises", "over", "the", "next", "four", "years,", "in", "line", "with", "raises", "granted", "city", "employees", "through", "collective", "bargaining.", "Current", "Mayor", "Betsy", "Hodges", "is", "paid", "$116,528", "a", "year.", "Mayor-elect", "Jacob", "Frey", "will", "be", "paid", "$126,528.", "Starting", "in", "January,", "council", "members", "will", "be", "paid", "at", "a", "rate", "of", "$98,696,", "up", "from", "the", "current", "pay", "of", "$88,695.", "The", "pay", "raise", "resolution", "was", "not", "on", "the", "council’s", "pre-meeting", "agenda", "and", "the", "resolution", "had", "not", "passed", "through", "the", "Ways", "and", "Means", "Committee", "or", "any", "other", "standing", "committees.", "It", "was", "also", "not", "subject", "to", "public", "comment.", "Instead,", "it", "was", "walked", "onto", "the", "final", "meeting", "agenda", "at", "the", "beginning", "of", "the", "December", "15", "meeting", "by", "Council", "President", "Barbara", "Johnson.", "The", "motion", "passed", "on", "a", "unanimous", "voice", "vote.", "Council", "Member", "Abdi", "Warsame", "was", "absent.", "Article", "continues", "after", "advertisement", "“We", "talked", "before", "how", "challenging", "this", "work", "can", "be,”", "Johnson", "said,", "referencing", "the", "ceremonies", "earlier", "in", "the", "meeting", "honoring", "outgoing", "council", "members", "and", "Hodges.", "“We", "have", "fallen", "behind,", "as", "council", "members,", "in", "some", "really", "challenging", "times.”", "During", "the", "Great", "Recession,", "neither", "elected", "officials", "nor", "city", "workers", "received", "raises.", "Those", "workers", "—", "both", "management", "and", "union-represented", "—", "have", "received", "raises", "in", "the", "last", "several", "budgets,", "while", "the", "council", "and", "mayor", "have", "not,", "Johnson", "said.", "The", "proposed", "raise", "would", "put", "Minneapolis", "council", "members’", "pay", "on", "par", "with", "those", "in", "Denver", "and", "Boston", "but", "behind", "Portland", "and", "Seattle.", "St.", "Paul", "pays", "its", "mayor", "$126,000.", "Hennepin", "County", "commissioners", "made", "$110,796", "this", "year", "and", "will", "make", "$113,566", "in", "2018.", "Commissioner", "Jeff", "Johnson", "took", "a", "salary", "of", "$108,093", "this", "year", "and", "will", "keep", "that", "pay", "level", "in", "2018.", "On", "Dec.", "8,", "council", "approved", "its", "$1.4", "billion", "budget", "for", "2018,", "which", "did", "not", "contain", "money", "for", "the", "elected", "officials’", "pay", "raises.", "To", "account", "for", "the", "$140,000", "lump-sum", "needed", "for", "the", "pay", "hike,", "the", "budget", "had", "to", "be", "amended;", "the", "resolution", "granting", "the", "raises", "did", "so", "by", "taking", "$50,000", "from", "the", "City", "Coordinator’s", "budget;", "$30,000", "from", "Finance", "and", "Property", "Services;", "$10,000", "from", "the", "City", "Clerk;", "$10,000", "from", "the", "Health", "Department;", "$20,000", "from", "Community", "Planning", "and", "Economic", "Services;", "$10,000", "from", "Human", "Resources;", "and", "$10,000", "from", "Regulatory", "Services.", "Correction:", "Jacob", "Frey", "returned", "to", "the", "council", "dais", "just", "before", "the", "voice", "vote", "was", "taken", "on", "the", "pay", "raise.", "He", "voted", "yes.", "This", "story", "originally", "stated", "that", "Frey", "had", "left", "the", "meeting", "and", "did", "not", "vote", "for", "the", "raise." ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Skulle", "ta", "gull", "-", "rykket", "ned", "*", "Rundspilt", "av", "MIF", "*", "Fansen", "kastet", "bluss", "Ingen", "millionbonus", "for", "Marcus", "Pedersen", "som", "trolig", "er", "ferdig", "i", "Brann", "Preget", "Huseklepp:", "–", "Unnskyld", "av", "hele", "mitt", "hjerte", "MJØNDALEN/OSLO", "(VG)", "(Mjøndalen", "–", "Brann", "3-0,", "sammenlagt", "4-1)", "3.", "desember", "2013", "ble", "Rikard", "Norling", "ansatt.", "Målet", "var", "gull.", "Nesten", "nøyaktig", "ett", "år", "senere", "rykket", "Brann", "ned", "til", "1.", "divisjon.", "Morten", "Stokstad", "Wegard", "Bakkehaug", "Oppdatert", "16.", "februar", "2016", "Artikkelen", "er", "over", "fem", "år", "gammel", "Fakta", "om", "flest", "nedrykk", "fra", "toppserien", "fotball", "menn", "siden", "1963:", "*", "8", "HamKam", "*", "7", "Lyn,", "Start", "og", "Sogndal", "*", "6", "Brann", "og", "Fredrikstad", "*", "5", "Mjøndalen,", "Molde,", "Skeid,", "Strømsgodset", "og", "Vålerenga", "*", "4", "Moss.", "Vis", "mer", "Bergenserne", "ble", "herjet", "med", "av", "1.", "divisjonslaget", "Mjøndalen", "–", "som", "anført", "av", "Sanel", "Kapidzic", "og", "Vamouti", "Diomande", "gjorde", "kvelden", "til", "kanskje", "det", "største", "marerittet", "i", "Branns", "stolte", "historie.", "Kapidzic", "scoret", "to,", "Diomande", "ett,", "og", "desillusjonerte", "Brann-spillere", "og", "supportere", "virket", "totalt", "lamslåtte.", "Nedrykket", "ble", "ikke", "mindre", "pinlig", "av", "at", "de", "tilreisende", "supporterne", "kastet", "flere", "bluss", "inn", "på", "banen", "etter", "3-0-scoringen", "til", "Kapidzic.", "Kampen", "ble", "stoppet", "i", "noen", "minutter,", "men", "nokså", "raskt", "satt", "i", "gang", "igjen.", "Redaksjonelt", "samarbeid", "Dplay", "Se", "Eliteserien", "og", "OBOS-ligaen", "direkte", "på", "Dplay", "VG", "LIVE:Vi", "fulgte", "kampen", "minutt", "for", "minutt", "her!", "–", "Nå", "er", "det", "mye", "skuffelse", "i", "min", "kropp.", "Jeg", "er", "lite", "nyansert", "og", "konkret.", "Vi", "fikk", "ikke", "til", "vår", "måte", "å", "spille", "oss", "ut", "av", "deres", "høye", "press.", "I", "første", "omgang", "hadde", "vi", "flere", "store", "sjanser.", "Kanskje", "tre-fire-fem,", "men", "vi", "skulle", "gjerne", "skapt", "mer.", "Nedrykk", "er", "en", "enorm", "skuffelse.", "Jeg", "må", "ta", "ansvar", "for", "det", "her.", "Det", "handler", "ikke", "om", "å", "stikke", "herfra", "om", "klubben", "mener", "det", "er", "best", "at", "jeg", "fortsetter,", "sier", "Rikard", "Norling", "til", "VG.", "Sinte", "supportere", "Ifølge", "Bergensavisen", "måtte", "vekter", "gå", "mellom", "da", "flere", "supportere", "forsøkte", "å", "«fly", "på»", "svensken", "etter", "kampslutt.", "LEI", "SEG:", "Erik", "Huseklepp.", "Foto:,Bjørn", "S.", "Delebekk", "–", "Jeg", "føler", "med", "supporterne.", "Jeg", "skulle", "gjerne", "stått", "med", "dem,", "sett", "dem", "i", "øynene", "og", "svart", "dem", "på", "alt", "de", "lurer", "på,", "sier", "Norling", "til", "VG.", "–", "Unnskyld", "av", "hele", "mitt", "hjerte.", "Jeg", "har", "ikke", "vært", "god", "nok", "i", "år.", "Jeg", "skal", "gjøre", "alt", "jeg", "kan", "for", "å", "få", "Brann", "opp", "igjen.", "Brann", "er", "en", "del", "av", "meg.", "Dette", "er", "tungt,", "sier", "en", "preget", "Erik", "Huseklepp", "til", "VG.", "–", "Vi", "har", "ikke", "prestert", "godt", "nok.", "Slik", "har", "det", "vært", "gjennom", "hele", "sesongen.", "Da", "fortjener", "man", "ikke", "noe", "mer.", "Jeg", "er", "veldig", "lei", "meg.", "Utrolig", "lei", "meg", "og", "veldig", "skuffet,", "sier", "Branns", "Azar", "Karadas", "som", "også", "rykket", "ned", "med", "Sogndal", "denne", "sesongen.", "–", "Nå", "har", "jeg", "det", "helt", "jæ" ], [ "vlig.", "Da", "3-0", "kom", "gikk", "luften", "ut", "av", "ballongen", "og", "da", "var", "vi", "helt", "ferdige,", "dessverre.", "Nå", "får", "vi", "leve", "med", "skuffelsen", "i", "kveld", "og", "i", "natt", "før", "vi", "reiser", "hjem", "for", "å", "evaluere", "hva", "som", "har", "skjedd.", "Sportsklubben", "Brann", "og", "Bergen", "by", "kommer", "til", "å", "reise", "seg", "igjen,", "sier", "Brann-leder", "Roald", "Bruun", "Hansen", "til", "VG.", "Stolt", "Mjøndalen-sjef", "–", "Brann-spillerne", "er", "ikke", "så", "mye", "bedre", "enn", "våre.", "Det", "er", "ikke", "alltid", "penger", "som", "styrer", "hvem", "som", "vinner.", "Derfor", "kan", "en", "liten", "klubb", "som", "Mjøndalen", "få", "det", "til.", "Vi", "står", "tidlig", "opp", "om", "morgenen", "og", "jobber", "hardt.", "Jeg", "syns", "vi", "var", "bedre", "enn", "Brann", "over", "to", "kamper.", "Nå", "blir", "det", "sikkert", "noe", "som", "skjer", "i", "kveld.", "Jeg", "så", "det", "kom", "noen", "øl", "der.", "De", "går", "sikkert", "med,", "sier", "Mjøndalen-trener", "Vegard", "Hansen.", "–", "Dette", "er", "litt", "uvirkelig.", "Jeg", "kom", "hit", "når", "vi", "lå", "i", "3.", "divisjon.", "Nå", "tror", "jeg", "det", "skal", "bli", "den", "mest", "lukrative", "onsdagskvelden", "i", "Mjøndalen", "i", "år,", "sier", "Mads", "Hansen", "til", "VG.", "Etter", "1-1", "i", "første", "kamp", "i", "Bergen", "var", "det", "klart", "at", "Brann", "måtte", "vinne", "eller", "spille", "2-2", "for", "å", "få", "den", "siste", "plassen", "i", "Tippeligaen", "i", "2015.", "Bergenserne", "åpnet", "kampen", "best", "med", "to", "småfarlige", "sjanser", "til", "Kasper", "Skaanes.", "Men", "Mjøndalen", "spiste", "seg", "gradvis", "inn", "i", "kampen,", "og", "var", "livsfarlige", "på", "de", "mange", "dødballene", "bruntrøyene", "fikk.", "Etter", "27", "minutter", "sendte", "Kapidzic", "inn", "ledermålet", "på", "corner.", "Marcus", "Pedersen", "kom", "seg", "til", "en", "gigantsjanse", "etter", "40", "minutter,", "men", "headingen", "fra", "meget", "god", "posisjon", "gikk", "utrolig", "nok", "utenfor.", "Utover", "i", "andre", "omgang", "fortsatte", "Mjøndalen", "å", "kjøre", "kampen,", "hjulpet", "frem", "av", "et", "meget", "entusiastisk", "hjemmepublikum.", "Midtveis", "i", "omgangen", "punkterte", "hjemmelaget", "kvalifiseringskampen.", "Diomande", "dro", "seg", "løs", "på", "venstrekanten", "og", "skjøt", "i", "korthjørnet.", "Øystein", "Øvretveit", "burde", "ha", "tatt", "skuddet,", "men", "ballen", "gikk", "under", "Branns", "keeper", "som", "måtte", "stå", "i", "Piotr", "Leciejewskis", "skadefravær.", "Ingen", "Pedersen-bonus", "To", "minutter", "senere", "økte", "banens", "store", "spiller,", "Sanel", "Kapidzic,", "til", "3-0", "etter", "en", "ny", "dødball", "der", "Brann", "hadde", "voldsomme", "problemer", "i", "begge", "kvalifiseringskampene.", "Dermed", "får", "Tippeligaen", "et", "lokalderby", "i", "2015:", "Mjøndalen", "med", "pappa", "Hans", "Erik", "Ødegaard", "som", "assistenttrener", "møter", "Buskerud-nabo", "Strømsgodset", "og", "Martin", "Ødegaard.", "Brann", "må", "nøye", "seg", "med", "byderby", "mot", "Åsane", "i", "1.", "divisjon…", "Da", "Sanel", "Kapidzic", "satte", "inn", "sitt", "andre", "mål", "etter", "en", "dødball,", "der", "Brann", "ikke", "maktet", "å", "forsvare", "seg", "onsdag", "kveld,", "kokte", "det", "over", "for", "de", "tilreisende", "fra", "Bergen", "som", "skjønte", "at", "dette", "gikk", "mot", "nedrykk.", "Fra", "tribuneseksjonen", "hvor", "Brann-fansen", "holdt", "til", "ble", "det", "fyrt", "opp", "bluss", "som", "ble", "kastet", "ut", "på", "kunstgresset.", "I", "etterkant", "viste", "TV-bildene", "at", "flere", "supportere", "p" ], [ "å", "den", "samme", "tribunen", "barket", "sammen", "i", "slåsskamp.", "Store", "politistyrker", "tok", "oppstilling", "foran", "tribunen", "for", "å", "roe", "ned", "de", "hissige", "tilskuerne", "som", "blant", "annet", "ropte", "på", "Roald", "Bruun-Hanssens", "avgang.", "Kasper", "Skaanes", "kom", "til", "en", "sjelden", "Brann-sjanse", "fem", "minutter", "på", "overtid,", "men", "Ivar", "Andreas", "Forn", "kom", "ut", "og", "reddet.", "Sekunder", "senere", "det", "ble", "det", "på", "by", "bråk", "blant", "Brann-fansen", "der", "familier", "trakk", "vekk", "for", "å", "unngå", "scenene", "som", "utspant", "seg.", "Den", "kalde", "kvelden", "i", "Mjøndalen", "ble", "ekstra", "tung", "for", "Marcus", "Pedersen.", "Brann-spissen", "hadde", "sikret", "seg", "én", "million", "i", "bonus", "dersom", "laget", "berget", "plassen,", "men", "alt", "tyder", "nå", "at", "Hamar-gutten", "istedet", "forsvinner", "fra", "Bergen.", "", "", "", "", "", "Publisert:", "26.11.14", "kl.", "20:47", "Oppdatert:", "16.02.16", "kl.", "13:33", "Les", "også" ] ]
[ [ "de", "de", "de", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "de", "it", "it", "it", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "pt", "pt", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "en", "en", "it", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "nl", "it", "it", "it", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "en", "fr", "fr", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl" ], [ "co", "de", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "de", "co", "fr", "fr", "fr", "fr", "fr", "fr", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "it", "it", "fr", "fr", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "en", "en", "en", "en", "en", "en", "fr", "it", "it", "it", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "fr", "fr", "fr", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en" ], [ "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "de", "fr", "fr", "fr", "fr", "fr", "nl", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "nl", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de" ] ]
[ [ [ "Skulle", "ta", "gull", "-", "rykket", "ned", "*", "Rundspilt", "av", "MIF", "*", "Fansen", "kastet", "bluss", "Ingen", "millionbonus", "for", "Marcus", "Pedersen", "som", "trolig", "er", "ferdig", "i", "Brann", "Preget", "Huseklepp:", "–", "Unnskyld", "av", "hele", "mitt", "hjerte", "MJØNDALEN/OSLO", "(VG)", "(Mjøndalen", "–", "Brann", "3-0,", "sammenlagt", "4-1)", "3.", "desember", "2013", "ble", "Rikard", "Norling", "ansatt.", "Målet", "var", "gull.", "Nesten", "nøyaktig", "ett", "år", "senere", "rykket", "Brann", "ned", "til", "1.", "divisjon.", "Morten", "Stokstad", "Wegard", "Bakkehaug", "Oppdatert", "16.", "februar", "2016", "Artikkelen", "er", "over", "fem", "år", "gammel", "Fakta", "om", "flest", "nedrykk", "fra", "toppserien", "fotball", "menn", "siden", "1963:", "*", "8", "HamKam", "*", "7", "Lyn,", "Start", "og", "Sogndal", "*", "6", "Brann", "og", "Fredrikstad", "*", "5", "Mjøndalen,", "Molde,", "Skeid,", "Strømsgodset", "og", "Vålerenga", "*", "4", "Moss.", "Vis", "mer", "Bergenserne", "ble", "herjet", "med", "av", "1.", "divisjonslaget", "Mjøndalen", "–", "som", "anført", "av", "Sanel", "Kapidzic", "og", "Vamouti", "Diomande", "gjorde", "kvelden", "til", "kanskje", "det", "største", "marerittet", "i", "Branns", "stolte", "historie.", "Kapidzic", "scoret", "to,", "Diomande", "ett,", "og", "desillusjonerte", "Brann-spillere", "og", "supportere", "virket", "totalt", "lamslåtte.", "Nedrykket", "ble", "ikke", "mindre", "pinlig", "av", "at", "de", "tilreisende", "supporterne", "kastet", "flere", "bluss", "inn", "på", "banen", "etter", "3-0-scoringen", "til", "Kapidzic.", "Kampen", "ble", "stoppet", "i", "noen", "minutter,", "men", "nokså", "raskt", "satt", "i", "gang", "igjen.", "Redaksjonelt", "samarbeid", "Dplay", "Se", "Eliteserien", "og", "OBOS-ligaen", "direkte", "på", "Dplay", "VG", "LIVE:Vi", "fulgte", "kampen", "minutt", "for", "minutt", "her!", "–", "Nå", "er", "det", "mye", "skuffelse", "i", "min", "kropp.", "Jeg", "er", "lite", "nyansert", "og", "konkret.", "Vi", "fikk", "ikke", "til", "vår", "måte", "å", "spille", "oss", "ut", "av", "deres", "høye", "press.", "I", "første", "omgang", "hadde", "vi", "flere", "store", "sjanser.", "Kanskje", "tre-fire-fem,", "men", "vi", "skulle", "gjerne", "skapt", "mer.", "Nedrykk", "er", "en", "enorm", "skuffelse.", "Jeg", "må", "ta", "ansvar", "for", "det", "her.", "Det", "handler", "ikke", "om", "å", "stikke", "herfra", "om", "klubben", "mener", "det", "er", "best", "at", "jeg", "fortsetter,", "sier", "Rikard", "Norling", "til", "VG.", "Sinte", "supportere", "Ifølge", "Bergensavisen", "måtte", "vekter", "gå", "mellom", "da", "flere", "supportere", "forsøkte", "å", "«fly", "på»", "svensken", "etter", "kampslutt.", "LEI", "SEG:", "Erik", "Huseklepp.", "Foto:,Bjørn", "S.", "Delebekk", "–", "Jeg", "føler", "med", "supporterne.", "Jeg", "skulle", "gjerne", "stått", "med", "dem,", "sett", "dem", "i", "øynene", "og", "svart", "dem", "på", "alt", "de", "lurer", "på,", "sier", "Norling", "til", "VG.", "–", "Unnskyld", "av", "hele", "mitt", "hjerte.", "Jeg", "har", "ikke", "vært", "god", "nok", "i", "år.", "Jeg", "skal", "gjøre", "alt", "jeg", "kan", "for", "å", "få", "Brann", "opp", "igjen.", "Brann", "er", "en", "del", "av", "meg.", "Dette", "er", "tungt,", "sier", "en", "preget", "Erik", "Huseklepp", "til", "VG.", "–", "Vi", "har", "ikke", "prestert", "godt", "nok.", "Slik", "har", "det", "vært", "gjennom", "hele", "sesongen.", "Da", "fortjener", "man", "ikke", "noe", "mer.", "Jeg", "er", "veldig", "lei", "meg.", "Utrolig", "lei", "meg", "og", "veldig", "skuffet,", "sier", "Branns", "Azar", "Karadas", "som", "også", "rykket", "ned", "med", "Sogndal", "denne", "sesongen.", "–", "Nå", "har", "jeg", "det", "helt", "jæ" ] ], [ [ "vlig.", "Da", "3-0", "kom", "gikk", "luften", "ut", "av", "ballongen", "og", "da", "var", "vi", "helt", "ferdige,", "dessverre.", "Nå", "får", "vi", "leve", "med", "skuffelsen", "i", "kveld", "og", "i", "natt", "før", "vi", "reiser", "hjem", "for", "å", "evaluere", "hva", "som", "har", "skjedd.", "Sportsklubben", "Brann", "og", "Bergen", "by", "kommer", "til", "å", "reise", "seg", "igjen,", "sier", "Brann-leder", "Roald", "Bruun", "Hansen", "til", "VG.", "Stolt", "Mjøndalen-sjef", "–", "Brann-spillerne", "er", "ikke", "så", "mye", "bedre", "enn", "våre.", "Det", "er", "ikke", "alltid", "penger", "som", "styrer", "hvem", "som", "vinner.", "Derfor", "kan", "en", "liten", "klubb", "som", "Mjøndalen", "få", "det", "til.", "Vi", "står", "tidlig", "opp", "om", "morgenen", "og", "jobber", "hardt.", "Jeg", "syns", "vi", "var", "bedre", "enn", "Brann", "over", "to", "kamper.", "Nå", "blir", "det", "sikkert", "noe", "som", "skjer", "i", "kveld.", "Jeg", "så", "det", "kom", "noen", "øl", "der.", "De", "går", "sikkert", "med,", "sier", "Mjøndalen-trener", "Vegard", "Hansen.", "–", "Dette", "er", "litt", "uvirkelig.", "Jeg", "kom", "hit", "når", "vi", "lå", "i", "3.", "divisjon.", "Nå", "tror", "jeg", "det", "skal", "bli", "den", "mest", "lukrative", "onsdagskvelden", "i", "Mjøndalen", "i", "år,", "sier", "Mads", "Hansen", "til", "VG.", "Etter", "1-1", "i", "første", "kamp", "i", "Bergen", "var", "det", "klart", "at", "Brann", "måtte", "vinne", "eller", "spille", "2-2", "for", "å", "få", "den", "siste", "plassen", "i", "Tippeligaen", "i", "2015.", "Bergenserne", "åpnet", "kampen", "best", "med", "to", "småfarlige", "sjanser", "til", "Kasper", "Skaanes.", "Men", "Mjøndalen", "spiste", "seg", "gradvis", "inn", "i", "kampen,", "og", "var", "livsfarlige", "på", "de", "mange", "dødballene", "bruntrøyene", "fikk.", "Etter", "27", "minutter", "sendte", "Kapidzic", "inn", "ledermålet", "på", "corner.", "Marcus", "Pedersen", "kom", "seg", "til", "en", "gigantsjanse", "etter", "40", "minutter,", "men", "headingen", "fra", "meget", "god", "posisjon", "gikk", "utrolig", "nok", "utenfor.", "Utover", "i", "andre", "omgang", "fortsatte", "Mjøndalen", "å", "kjøre", "kampen,", "hjulpet", "frem", "av", "et", "meget", "entusiastisk", "hjemmepublikum.", "Midtveis", "i", "omgangen", "punkterte", "hjemmelaget", "kvalifiseringskampen.", "Diomande", "dro", "seg", "løs", "på", "venstrekanten", "og", "skjøt", "i", "korthjørnet.", "Øystein", "Øvretveit", "burde", "ha", "tatt", "skuddet,", "men", "ballen", "gikk", "under", "Branns", "keeper", "som", "måtte", "stå", "i", "Piotr", "Leciejewskis", "skadefravær.", "Ingen", "Pedersen-bonus", "To", "minutter", "senere", "økte", "banens", "store", "spiller,", "Sanel", "Kapidzic,", "til", "3-0", "etter", "en", "ny", "dødball", "der", "Brann", "hadde", "voldsomme", "problemer", "i", "begge", "kvalifiseringskampene.", "Dermed", "får", "Tippeligaen", "et", "lokalderby", "i", "2015:", "Mjøndalen", "med", "pappa", "Hans", "Erik", "Ødegaard", "som", "assistenttrener", "møter", "Buskerud-nabo", "Strømsgodset", "og", "Martin", "Ødegaard.", "Brann", "må", "nøye", "seg", "med", "byderby", "mot", "Åsane", "i", "1.", "divisjon…", "Da", "Sanel", "Kapidzic", "satte", "inn", "sitt", "andre", "mål", "etter", "en", "dødball,", "der", "Brann", "ikke", "maktet", "å", "forsvare", "seg", "onsdag", "kveld,", "kokte", "det", "over", "for", "de", "tilreisende", "fra", "Bergen", "som", "skjønte", "at", "dette", "gikk", "mot", "nedrykk.", "Fra", "tribuneseksjonen", "hvor", "Brann-fansen", "holdt", "til", "ble", "det", "fyrt", "opp", "bluss", "som", "ble", "kastet", "ut", "på", "kunstgresset.", "I", "etterkant", "viste", "TV-bildene", "at", "flere", "supportere", "p" ] ], [ [ "å", "den", "samme", "tribunen", "barket", "sammen", "i", "slåsskamp.", "Store", "politistyrker", "tok", "oppstilling", "foran", "tribunen", "for", "å", "roe", "ned", "de", "hissige", "tilskuerne", "som", "blant", "annet", "ropte", "på", "Roald", "Bruun-Hanssens", "avgang.", "Kasper", "Skaanes", "kom", "til", "en", "sjelden", "Brann-sjanse", "fem", "minutter", "på", "overtid,", "men", "Ivar", "Andreas", "Forn", "kom", "ut", "og", "reddet.", "Sekunder", "senere", "det", "ble", "det", "på", "by", "bråk", "blant", "Brann-fansen", "der", "familier", "trakk", "vekk", "for", "å", "unngå", "scenene", "som", "utspant", "seg.", "Den", "kalde", "kvelden", "i", "Mjøndalen", "ble", "ekstra", "tung", "for", "Marcus", "Pedersen.", "Brann-spissen", "hadde", "sikret", "seg", "én", "million", "i", "bonus", "dersom", "laget", "berget", "plassen,", "men", "alt", "tyder", "nå", "at", "Hamar-gutten", "istedet", "forsvinner", "fra", "Bergen.", "", "", "", "", "", "Publisert:", "26.11.14", "kl.", "20:47", "Oppdatert:", "16.02.16", "kl.", "13:33", "Les", "også" ] ] ]
[ [ "de" ], [ "co" ], [ "de" ] ]
[ "mono" ]
[ [ "ALBUQUERQUE,", "N.M.", "—", "The", "University", "of", "New", "Mexico", "will", "be", "extending", "their", "spring", "break", "by", "two", "weeks,", "through", "April", "5,", "due", "to", "the", "COVID-19", "pandemic.", "\"We", "will", "use", "this", "three-week", "period", "to", "plan", "and", "prepare", "for", "some", "of", "the", "changes", "this", "pandemic", "will", "necessitate,", "including", "for", "the", "continued", "academic", "success", "of", "our", "students", "and", "the", "health", "of", "our", "entire", "university", "community,\"", "said", "UNM", "President", "Garnett", "Stokes." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de" ] ]
[ [ [ "ALBUQUERQUE,", "N.M.", "—", "The", "University", "of", "New", "Mexico", "will", "be", "extending", "their", "spring", "break", "by", "two", "weeks,", "through", "April", "5,", "due", "to", "the", "COVID-19", "pandemic.", "\"We", "will", "use", "this", "three-week", "period", "to", "plan", "and", "prepare", "for", "some", "of", "the", "changes", "this", "pandemic", "will", "necessitate,", "including", "for", "the", "continued", "academic", "success", "of", "our", "students", "and", "the", "health", "of", "our", "entire", "university", "community,\"", "said", "UNM", "President", "Garnett", "Stokes." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "A", "disturbing", "video", "posted", "to", "Facebook", "has", "authorities", "in", "Louisiana", "looking", "to", "file", "felony", "charges", "for", "dogfighting.", "The", "Advocate", "in", "Baton", "Rouge", "Louisiana", "reports", "that", "a", "video", "posted", "by", "user", "Kendrick", "Drummond", "contained", "graphic", "scenes", "of", "dog", "fighting", "as", "dozens", "of", "spectators", "watched", "and", "cheered", "on", "the", "canine", "combatants.", "The", "video", "was", "brought", "to", "the", "attention", "of", "Tangi", "Humane", "Society", "Director", "Randy", "Stegall", "through", "emails", "and", "messages", "from", "people", "who", "had", "seen", "the", "video.", "Drummond,", "whose", "Facebook", "profile", "has", "since", "been", "deleted,", "as", "an", "Amite", "address,", "but", "the", "video", "claimed", "that", "the", "location", "was", "Lafayette,", "leading", "authorities", "to", "try", "and", "determine", "if", "the", "crime", "happened", "in", "Tangipahoa", "Parish", "or", "Lafayette", "Parish.", "The", "Tangi", "Humane", "Society", "is", "working", "with", "Lafayette", "PD,", "the", "Lafayette", "Sheriff’s", "Office,", "Tangipahoa", "Sheriff’s", "Office", "and", "State", "Police", "to", "ID", "the", "people", "in", "the", "video,", "as", "well", "as", "looking", "for", "clues", "to", "the", "location", "of", "the", "dog", "fight", "so", "that", "warrants", "can", "be", "issued", "and", "served.", "Lafayette", "law", "enforcement", "have", "a", "potential", "ID", "on", "one", "person", "in", "the", "video", "and", "have", "received", "a", "cell", "phone", "believed", "to", "be", "used", "by", "Drummond", "and", "registered", "to", "someone", "in", "Lafayette.", "The", "Advocate", "quoted", "Stegall", "as", "saying:", "“Once", "we", "ID", "one", "of", "them", "and", "get", "them", "pulled,", "we’ll", "probably", "get", "the", "rest", "of", "them.", "These", "are", "felony", "charges,", "so", "somebody’s", "bound", "to", "start", "talking.”", "Louisiana", "State", "law", "makes", "it", "a", "felony", "to", "operate,", "promote,", "profit", "from,", "or", "attend", "a", "dog", "fight,", "punishable", "by", "a", "fine", "from", "$1000.00", "–", "$25,000.00", "and/or", "1-10", "years", "in", "prison.", "Let", "justice", "prevail.", "Written", "by", "Trisha", "Lewis" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "A", "disturbing", "video", "posted", "to", "Facebook", "has", "authorities", "in", "Louisiana", "looking", "to", "file", "felony", "charges", "for", "dogfighting.", "The", "Advocate", "in", "Baton", "Rouge", "Louisiana", "reports", "that", "a", "video", "posted", "by", "user", "Kendrick", "Drummond", "contained", "graphic", "scenes", "of", "dog", "fighting", "as", "dozens", "of", "spectators", "watched", "and", "cheered", "on", "the", "canine", "combatants.", "The", "video", "was", "brought", "to", "the", "attention", "of", "Tangi", "Humane", "Society", "Director", "Randy", "Stegall", "through", "emails", "and", "messages", "from", "people", "who", "had", "seen", "the", "video.", "Drummond,", "whose", "Facebook", "profile", "has", "since", "been", "deleted,", "as", "an", "Amite", "address,", "but", "the", "video", "claimed", "that", "the", "location", "was", "Lafayette,", "leading", "authorities", "to", "try", "and", "determine", "if", "the", "crime", "happened", "in", "Tangipahoa", "Parish", "or", "Lafayette", "Parish.", "The", "Tangi", "Humane", "Society", "is", "working", "with", "Lafayette", "PD,", "the", "Lafayette", "Sheriff’s", "Office,", "Tangipahoa", "Sheriff’s", "Office", "and", "State", "Police", "to", "ID", "the", "people", "in", "the", "video,", "as", "well", "as", "looking", "for", "clues", "to", "the", "location", "of", "the", "dog", "fight", "so", "that", "warrants", "can", "be", "issued", "and", "served.", "Lafayette", "law", "enforcement", "have", "a", "potential", "ID", "on", "one", "person", "in", "the", "video", "and", "have", "received", "a", "cell", "phone", "believed", "to", "be", "used", "by", "Drummond", "and", "registered", "to", "someone", "in", "Lafayette.", "The", "Advocate", "quoted", "Stegall", "as", "saying:", "“Once", "we", "ID", "one", "of", "them", "and", "get", "them", "pulled,", "we’ll", "probably", "get", "the", "rest", "of", "them.", "These", "are", "felony", "charges,", "so", "somebody’s", "bound", "to", "start", "talking.”", "Louisiana", "State", "law", "makes", "it", "a", "felony", "to", "operate,", "promote,", "profit", "from,", "or", "attend", "a", "dog", "fight,", "punishable", "by", "a", "fine", "from", "$1000.00", "–", "$25,000.00", "and/or", "1-10", "years", "in", "prison.", "Let", "justice", "prevail.", "Written", "by", "Trisha", "Lewis" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Syndicated", "radio", "host", "Laura", "Ingraham", "says", "Mitch", "McConnell", "needs", "to", "do", "what", "he", "promised", "and", "repeal", "Obamacare:", "\"This", "is", "a", "test", "of", "his", "leadership", "in", "the", "U.S.", "Senate.", "After", "all", "these", "years", "proising", "to", "repeal", "Obamacare", "when", "it", "didn't", "count...", "And", "now", "when", "they", "can", "govern,", "they", "don't", "want", "to,", "or", "they", "can't", "take", "a", "little", "haircut", "of", "what", "they", "want,", "it", "is", "going", "to", "raise", "serious", "questions", "on", "the", "psrt", "of", "American", "voters", "about", "whether", "these", "Republicans", "are", "the", "right", "ones", "to", "move", "forward", "on", "healthcare,\"", "Ingraham", "added.", "\"This", "has", "to", "get", "done.", "If", "Mitch", "McConnell", "can't", "do", "it,", "he", "needs", "to", "step", "aside,\"", "she", "also", "said." ] ]
[ [ "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Syndicated", "radio", "host", "Laura", "Ingraham", "says", "Mitch", "McConnell", "needs", "to", "do", "what", "he", "promised", "and", "repeal", "Obamacare:", "\"This", "is", "a", "test", "of", "his", "leadership", "in", "the", "U.S.", "Senate.", "After", "all", "these", "years", "proising", "to", "repeal", "Obamacare", "when", "it", "didn't", "count...", "And", "now", "when", "they", "can", "govern,", "they", "don't", "want", "to,", "or", "they", "can't", "take", "a", "little", "haircut", "of", "what", "they", "want,", "it", "is", "going", "to", "raise", "serious", "questions", "on", "the", "psrt", "of", "American", "voters", "about", "whether", "these", "Republicans", "are", "the", "right", "ones", "to", "move", "forward", "on", "healthcare,\"", "Ingraham", "added.", "\"This", "has", "to", "get", "done.", "If", "Mitch", "McConnell", "can't", "do", "it,", "he", "needs", "to", "step", "aside,\"", "she", "also", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Prison", "Planet.com", "Tuesday,", "October", "6,", "2009", "A", "couple", "of", "weeks", "ago,", "ABC’s", "Dr.", "Oz", "pulled", "a", "propaganda", "stunt", "by", "lauding", "the", "virtues", "of", "the", "H1N1", "vaccine", "and", "apparently", "getting", "injected", "with", "it", "live", "on", "his", "show.", "However,", "when", "asked", "by", "a", "CNN", "anchor", "if", "he", "would", "be", "making", "his", "kids", "take", "it,", "the", "doc", "was", "less", "gung-ho.", "Perhaps", "he", "knows", "what’s", "actually", "in", "the", "vaccine,", "namely", "mercury,", "squalene", "and", "a", "host", "of", "other", "nasties.", "FLASHBACK:", "Propaganda:", "ABC’s", "Dr.", "Oz", "Gets", "Vaccinated", "With", "Swine", "Flu", "Shot", "Embedded", "video", "from", "CNN", "Video", "This", "article", "was", "posted:", "Tuesday,", "October", "6,", "2009", "at", "11:51", "am", "Print", "this", "page.", "Infowars.com", "Videos:", "Comment", "on", "this", "article" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Prison", "Planet.com", "Tuesday,", "October", "6,", "2009", "A", "couple", "of", "weeks", "ago,", "ABC’s", "Dr.", "Oz", "pulled", "a", "propaganda", "stunt", "by", "lauding", "the", "virtues", "of", "the", "H1N1", "vaccine", "and", "apparently", "getting", "injected", "with", "it", "live", "on", "his", "show.", "However,", "when", "asked", "by", "a", "CNN", "anchor", "if", "he", "would", "be", "making", "his", "kids", "take", "it,", "the", "doc", "was", "less", "gung-ho.", "Perhaps", "he", "knows", "what’s", "actually", "in", "the", "vaccine,", "namely", "mercury,", "squalene", "and", "a", "host", "of", "other", "nasties.", "FLASHBACK:", "Propaganda:", "ABC’s", "Dr.", "Oz", "Gets", "Vaccinated", "With", "Swine", "Flu", "Shot", "Embedded", "video", "from", "CNN", "Video", "This", "article", "was", "posted:", "Tuesday,", "October", "6,", "2009", "at", "11:51", "am", "Print", "this", "page.", "Infowars.com", "Videos:", "Comment", "on", "this", "article" ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Their", "measure", "already", "has", "the", "backing", "of", "four", "Democratic", "senators", "who", "have", "launched", "bids", "for", "the", "2020", "presidential", "nomination.", "But", "it", "is", "already", "being", "lampooned", "by", "Republicans", "—", "though", "embraced", "by", "progressives", "—", "for", "its", "broad", "aims", "on", "things", "unrelated", "to", "climate,", "including", "increased", "access", "to", "housing,", "health", "care", "and", "education", "for", "lower-income", "communities.", "AD", "AD", "“This", "is", "really", "about", "providing", "justice", "for", "communities", "and", "just", "transitions", "for", "communities,”", "Ocasio-Cortez", "told", "NPR", "in", "an", "interview", "Thursday", "morning.", "“So", "really", "the", "heart", "of", "the", "Green", "New", "Deal", "is", "about", "social", "justice.”", "Ocasio-Cortez", "and", "Markey", "form", "a", "notable", "pairing:", "The", "former", "leveraged", "her", "political", "stardom", "to", "galvanize", "progressives", "around", "a", "demand", "for", "a", "comprehensive", "climate", "plan", "while", "the", "latter", "brings", "gravitas", "to", "the", "proposal", "as", "one", "of", "the", "original", "sponsors", "of", "Barack", "Obama's", "ultimately", "unsuccessful", "cap-and-trade", "plan", "The", "proposal", "is", "a", "nonbinding", "resolution,", "but", "its", "aims", "are", "ambitious.", "The", "Democratic", "resolution", "calls", "for", "the", "United", "States", "to", "achieve", "net-zero", "greenhouse", "gas", "emissions", "within", "ten", "years", "by", "“dramatically", "expanding", "and", "upgrading", "renewable", "power", "sources.”", "It", "stands", "as", "a", "stark", "counterpoint", "to", "the", "Trump", "administration's", "downplaying", "of", "the", "scientific", "consensus", "behind", "climate", "change,", "as", "it", "has", "rolled", "back", "rules", "designed", "to", "contain", "global", "warming", "and", "withdrawn", "from", "the", "Paris", "climate", "accord", "aimed", "at", "reducing", "global", "pollution.", "AD", "AD", "The", "five-page", "resolution", "is", "not", "confined", "to", "climate", "change,", "however.", "It", "promotes", "a", "plethora", "of", "progressive", "ideals", "—", "like", "housing,", "health", "care,", "education,", "unions", "and", "indigenous", "rights,", "which", "are", "only", "indirectly", "related", "to", "Democratic", "climate", "desires.", "“The", "resolution", "is", "clear:", "We", "need", "to", "move", "to", "renewable", "energy", "as", "fast", "as", "possible,”", "said", "Stephen", "O'Hanlon,", "co-founder", "of", "the", "Sunrise", "Movement", "that", "has", "agitated", "for", "such", "a", "strategy.", "That", "youth", "climate", "advocacy", "organization", "brought", "the", "idea", "of", "a", "Green", "New", "Deal", "to", "the", "fore", "in", "Washington", "by", "staging", "sit-in", "protests", "in", "the", "offices", "of", "a", "number", "of", "high-ranking", "Democrats,", "including", "then-Minority", "Leader", "Nancy", "Pelosi", "(D-Calif.).", "Sunrise,", "which", "endorsed", "Ocasio-Cortez", "before", "her", "victory", "over", "then-Rep.", "Joe", "Crowley", "(D)", "in", "the", "New", "York", "primary", "last", "summer,", "worked", "with", "both", "the", "congresswoman's", "and", "Markey's", "offices", "to", "craft", "the", "resolution.", "AD", "AD", "“If", "we’re", "moving", "to", "100", "percent", "clean", "and", "renewable", "energy", "in", "10", "years,”", "O'Hanlon", "added,", "“there", "won’t", "be", "the", "incentive", "to", "build", "new", "coal", "or", "fossil", "fuel", "infrastructure.”", "At", "least", "four", "Senate", "Democrats", "currently", "running", "for", "president", "—", "Cory", "Booker", "of", "New", "Jersey,", "Kirsten", "Gillibrand", "of", "New", "York,", "Kamala", "Harris", "of", "California", "and", "Elizabeth", "Warren", "of", "Massachusetts", "—", "will", "co-sponsor", "the", "plan,", "spokespeople", "for", "the", "senators", "confirmed.", "Sen.", "Bernie", "Sanders", "(I-Vt.),", "who", "is", "considering", "another", "run", "for", "president,", "is", "also", "backing", "the", "plan.", "All", "five", "senators", "had", "previously", "endorsed", "the", "concept", "of", "the", "Green", "New", "Deal.", "In", "total,", "nine", "senators", "and", "60", "House", "members", "are", "on", "board,", "according", "to", "Markey's", "office.", "The", "supporters", "include", "Congressional", "Progressive", "Caucus", "leaders", "Mark", "Pocan", "(Wis.)", "and", "Pramila", "Jayapal", "(Wash.),", "as", "well", "as", "Ocasio-Cortez", "allies", "Ro", "Khanna", "(Calif.),", "Rashida", "Tlaib", "(Mich.),", "and", "Joe", "Neguse", "(Colo.).", "AD", "AD", "Markey", "and", "Ocasio-Cortez", "are", "expected", "to", "formally", "introduce", "their", "resolution", "on", "Thursday", "afternoon", "with", "“dozens”", "of", "supporters", "among", "congressional", "Democrats,", "according", "to", "a", "source", "with", "knowledge", "of", "the", "rollout", "who", "was", "not", "authorized", "to", "discuss", "it", "publicly.", "Their", "proposal", "stipulates", "that", "any", "infrastructure", "deal", "struck", "with", "President", "Trump", "and", "other", "Republicans", "must", "address", "climate", "change,", "such", "as", "by", "building", "resilience", "to", "extreme", "weather", "events.", "It", "gives", "progressives", "something", "many", "of", "them", "have", "been", "itching", "for:", "The", "promise", "of", "a", "guaranteed", "high-paying", "job", "for", "every", "American.", "Among", "its", "demands", "are", "new", "trade", "rules", "to", "“stop", "the", "transfer", "of", "jobs", "and", "pollution", "overseas.”", "The", "proposal", "also", "calls", "for", "a", "sweeping", "overhaul", "of", "the", "transportation", "sector", "“as", "much", "as", "is", "technologically", "possible,”", "with", "investments", "in", "zero-emissions", "vehicles", "along", "with", "high-speed", "rail", "and", "other", "public", "transit.", "AD", "AD", "“We", "have", "something", "very", "ambitious", "in", "mind,", "something", "akin", "to", "what", "we", "undertook", "in", "the", "Second", "World", "War,”", "said", "Robert", "Hockett,", "a", "professor", "at", "Cornell", "University", "who", "provided", "input", "on", "the", "plan.", "“It", "gives", "us", "a", "document", "around", "which", "to", "galvanize", "planning", "and", "action,", "and", "gives", "political", "figures", "running", "for", "office", "something", "they", "can", "sign", "onto", "or", "repudiate.", "There", "won’t", "be", "room", "anymore", "for", "just", "supporting", "'the", "concept.'", "”", "But", "one", "crucial", "thing", "the", "proposal", "does", "not", "spell", "out:", "How", "the", "federal", "government", "is", "expected", "to", "pay", "for", "or", "achieve", "these", "broad", "aims.", "The", "Green", "New", "Deal", "would" ], [ "be", "paid", "for", "“the", "same", "way", "we", "paid", "for", "the", "original", "New", "Deal,", "World", "War", "II,", "the", "bank", "bailouts,", "tax", "cuts", "for", "the", "rich", "and", "decades", "of", "war", "—", "with", "public", "money", "appropriated", "by", "Congress,”", "Ocasio-Cortez", "said,", "according", "to", "the", "Associated", "Press.", "AD", "AD", "That", "gave", "Republicans", "on", "Capitol", "Hill", "an", "opening", "to", "attack", "the", "plan", "as", "an", "ill-conceived", "wishlist", "—", "even", "before", "it", "was", "formally", "unveiled.", "“Wealth", "transfer", "schemes", "suggested", "in", "the", "radical", "policies", "like", "the", "Green", "New", "Deal", "may", "not", "be", "the", "best", "path", "to", "community", "prosperity,”", "said", "Rep.", "John", "Shimkus", "(Ill.),", "the", "top", "Republican", "on", "the", "House", "Energy", "and", "Commerce", "subcommittee", "on", "climate", "change", "and", "other", "environmental", "issues.", "That", "House", "panel", "was", "one", "of", "two", "—", "along", "with", "the", "Natural", "Resources", "Committee", "—", "to", "hold", "hearings", "on", "climate", "change", "on", "Wednesday.", "After", "two", "years", "out", "of", "power", "in", "Congress", "and", "the", "White", "House,", "Democrat", "are", "sending", "a", "message", "that", "the", "planet's", "warming", "will", "finally", "once", "again", "be", "a", "priority", "in", "Washington", "by", "scheduling", "that", "pair", "of", "hearings", "as", "among", "the", "first", "held", "in", "the", "new", "Congress.", "AD", "AD", "“Today", "we", "turn", "the", "page", "on", "this", "committee", "from", "climate", "change", "denial", "to", "climate", "action,”", "Natural", "Resources", "Chairman", "Raúl", "Grijalva", "(D-Ariz)", "said.", "Ocasio-Cortez", "and", "Markey’s", "proposal", "does", "not", "include", "an", "outright", "ban", "on", "fossil", "fuels,", "which", "some", "close", "to", "the", "bill", "see", "as", "a", "concession", "to", "moderates", "and", "labor", "groups.", "Some", "environmental", "activists", "defended", "that", "decision,", "saying", "the", "investments", "in", "green", "energy", "would", "make", "the", "ban", "unnecessary.", "\"There's", "some", "bold", "and", "visionary", "pieces", "in", "the", "Green", "New", "Deal", "resolution,\"", "said", "Erich", "Pica,", "president", "of", "Friends", "of", "the", "Earth,", "a", "climate", "advocacy", "group.", "\"But", "the", "failure", "to", "mention", "and", "explicitly", "state", "that", "we", "have", "to", "end", "the", "era", "of", "fossil", "fuels", "is", "just", "a", "huge", "missed", "opportunity", "to", "be", "real", "about", "where", "we", "are", "and", "where", "we", "need", "to", "go.\"", "AD", "The", "plan", "also", "does", "not", "explicitly", "exclude", "some", "major", "forms", "of", "low-emissions", "electricity", "—", "mainly,", "nuclear", "energy", "and", "hydropower", "—", "as", "some", "observers", "worried", "it", "would.", "AD", "While", "environmentalists", "have", "previously", "protested", "both", "forms", "of", "power", "over", "concerns", "like", "the", "risk", "of", "meltdown", "or", "the", "fragmentation", "of", "river", "habitat,", "climate", "analysts", "—", "including", "those", "with", "the", "United", "Nations", "Intergovernmental", "Panel", "on", "Climate", "Change", "(IPCC)", "—", "say", "both", "are", "necessary", "today", "to", "reduce", "emissions", "enough", "to", "stave", "off", "the", "worst", "effects", "of", "climate", "change.", "An", "IPCC", "report", "in", "October", "describing", "how", "the", "world", "has", "just", "over", "a", "decade", "to", "hold", "global", "warming", "to", "moderate", "levels", "proved", "to", "be", "a", "big", "motivating", "factor", "in", "the", "recent", "wave", "of", "climate", "activism.", "Ocasio-Cortez", "and", "Markey’s", "resolution", "cites", "those", "findings.", "THERMOMETER", "—", "The", "toll", "extreme", "weather", "takes:", "Last", "year’s", "disastrous", "series", "of", "hurricanes,", "wildfires", "and", "extreme", "weather", "events", "killed", "at", "least", "247", "people", "and", "cost", "the", "nation", "about", "$91", "billion.", "Of", "the", "14", "separate", "events", "noted", "in", "the", "data", "released", "by", "the", "National", "Oceanic", "and", "Atmospheric", "Administration,", "$73", "billion", "of", "the", "damage", "was", "attributed", "to", "Hurricanes", "Michael", "and", "Florence", "and", "the", "spate", "of", "wildfires", "in", "the", "West,", "The", "Post’s", "Brady", "Dennis", "and", "Chris", "Mooney", "report.", "While", "2018", "did", "not", "eclipse", "the", "$306", "billion", "in", "damage", "caused", "by", "devastating", "natural", "catastrophes", "in", "2017,", "“the", "most", "recent", "numbers", "continue", "what", "some", "experts", "call", "an", "alarming", "trend", "toward", "an", "increasing", "number", "of", "billion-dollar", "disasters,", "fueled,", "at", "least", "in", "part,", "by", "the", "warming", "climate.”", "Put", "in", "perspective:", "“Since", "1980,", "the", "United", "States", "has", "experienced", "241", "weather", "and", "climate", "disasters", "where", "the", "overall", "damage", "reached", "or", "exceeded", "$1", "billion,", "when", "adjusted", "for", "inflation,”", "Dennis", "and", "Mooney", "write.", "“Between", "1980", "and", "2013,", "according", "to", "NOAA,", "the", "nation", "averaged", "roughly", "half", "a", "dozen", "such", "disasters", "a", "year.", "Over", "the", "most", "recent", "five", "years,", "that", "number", "has", "jumped", "to", "more", "than", "12.”", "Deke", "Arndt,", "chief", "of", "the", "monitoring", "branch", "at", "NOAA’s", "National", "Centers", "for", "Environmental", "Information,", "told", "reporters", "the", "nation", "had", "“about", "twice", "the", "number", "of", "billion", "dollar", "disasters", "than", "we", "have", "in", "an", "average", "year", "over", "the", "last", "40", "years", "or", "so.”", "Man,", "it’s", "a", "hot", "one:", "To", "boot,", "NASA", "and", "NOAA", "scientists", "made", "a", "separate", "announcement", "Wednesday", "that", "the", "Earth’s", "average", "surface", "temperature", "last", "year", "was", "officially", "the", "fourth", "highest", "in", "nearly", "140", "years", "of", "data.", "The", "past", "four", "years", "have", "been", "the", "warmest", "on", "record,", "according", "to", "the", "data,", "and", "nine", "of", "the", "10", "warmest", "years", "on", "record", "have", "occurred", "since", "2005.", "And", "in", "most", "or", "all", "of", "those", "years,", "the", "temperature", "on", "Earth", "was", "at", "least", "1.8", "degrees", "Fahrenheit", "above", "the", "average", "19th", "century", "temperature.", "Gavin", "Schmidt,", "director", "of", "the", "Goddard", "Institute", "for", "Space", "Studies", "at", "NASA,", "said", "it", "was", "“quite", "clearly", "the", "fourth-warmest", "year", "in", "our", "record,", "which", "goes", "back", "to", "1880,", "and", "probably", "was", "warmer", "than", "many", "hundreds", "of", "years", "before" ], [ "that.”", "—", "Earth", "is", "looking", "a", "lot", "like", "it", "did", "during", "an", "ancient", "warming", "period:", "The", "planet", "is", "paralleling", "some", "of", "the", "conditions", "from", "the", "most", "recent", "major", "warm", "period", "115,000", "years", "ago.", "One", "clue", "for", "researchers", "was", "the", "discovery", "of", "ancient", "plants", "that", "emerged", "from", "retreating", "mountain", "glaciers", "in", "northeastern", "Canada,", "The", "Post’s", "Chris", "Mooney", "reports.", "The", "plants", "they", "found", "were", "“very", "old", "indeed,", "and", "had", "probably", "last", "grown", "in", "these", "spots", "some", "115,000", "years", "ago,”", "he", "writes.", "“That’s", "the", "last", "time", "the", "areas", "were", "actually", "not", "covered", "by", "ice,", "the", "scientists", "believe.”", "But", "there’s", "a", "major", "(and", "troubling)", "discrepancy", "between", "current", "and", "ancient", "conditions:", "Sea", "levels", "were", "20", "to", "30", "feet", "higher", "back", "then.", "“Scientists", "are", "now", "intensely", "debating", "precisely", "which", "processes", "could", "have", "played", "out", "then", "—", "and", "how", "soon", "they’ll", "play", "out", "again.", "After", "all,", "West", "Antarctica", "has", "already", "been", "shown,", "once", "again,", "to", "be", "beginning", "a", "retreat.”", "POWER", "PLAYS", "—", "Senate", "Democrat", "trolls", "Chamber", "of", "Commerce:", "Sen.", "Sheldon", "Whitehouse", "(D-R.I.)", "entered", "a", "tongue-in-cheek", "submission", "in", "a", "$25,000-prize", "contest", "being", "held", "by", "the", "business", "lobbying", "group", "for", "the", "\"best,", "most", "viable", "ideas", "for", "a", "long-term", "sustainable", "funding", "source", "for", "infrastructure.\"", "The", "liberal", "senator", "recommended", "eliminating", "fossil-fuel", "subsidies", "and", "placing", "a", "price", "on", "carbon.", "\"One", "would", "expect", "a", "business", "organization", "whose", "members", "can’t", "grow", "or", "thrive", "in", "the", "absence", "of", "an", "expanding", "economy", "or", "reliable", "infrastructure", "to", "be", "on", "the", "front", "lines", "of", "this", "fight,\"", "he", "wrote.", "\"Unfortunately...", "the", "U.S.", "Chamber", "of", "Commerce", "[has]", "not", "supported", "climate", "action.\"", "Not", "the", "first", "time", "he", "has", "taken", "aim", "at", "the", "chamber:", "Whitehouse", "recently", "challenged", "claims", "made", "by", "the", "trade", "group", "in", "support", "of", "the", "oil", "industry", "in", "a", "friend-of-the-court", "brief", "filed", "in", "a", "lawsuit", "between", "four", "California", "local", "governments", "and", "major", "oil", "companies.", "—", "Park", "Service", "won’t", "use", "visitor", "fees", "for", "park", "operations:", "The", "National", "Park", "Service", "has", "reportedly", "decided", "to", "use", "congressionally", "appropriated", "funds", "to", "pay", "for", "maintenance", "and", "staffing", "during", "the", "partial", "government", "shutdown,", "reversing", "an", "earlier", "move", "to", "use", "park", "visitor", "entrance", "fees,", "the", "Hill", "reports,", "citing", "an", "internal", "Park", "Service", "memo.", "“We", "have", "confirmed", "with", "the", "[White", "House]", "Office", "of", "Management", "and", "Budget", "that", "the", "NPS", "can", "move", "obligations", "made", "during", "the", "appropriations", "lapse", "from", "the", "FLREA", "fee", "account", "and", "apply", "those", "obligations", "to", "the", "National", "Park", "Service", "annual", "operating", "account,”", "NPS", "deputy", "director", "Dan", "Smith", "said", "in", "the", "memo,", "per", "the", "report.", "Meanwhile:", "Rep.", "Betty", "McCollum", "(D-Minn.),", "the", "chairwoman", "of", "the", "House", "Appropriations", "subcommittee", "that", "oversees", "the", "Park", "Service,", "called", "for", "an", "investigation", "of", "the", "Trump", "administration’s", "initial", "move", "to", "use", "entrance", "fees.", "“It", "is", "evident", "that", "NPS", "and", "DOI", "allowed", "national", "parks", "sites", "to", "remain", "open", "without", "adequate", "staff", "and", "services", "to", "protect", "the", "parks", "and", "their", "visitors,”", "she", "wrote", "in", "a", "letter", "to", "the", "Government", "Accountability", "Office.", "During", "a", "hearing", "Wednesday,", "McCollum", "said", "she’s", "“more", "than", "convinced,", "sadly,", "that", "the", "administration", "has", "ignored", "the", "law", "and", "the", "policies", "that", "the", "agencies", "have", "had", "in", "place", "for", "years", "to", "protect", "our", "citizens", "and", "our", "public", "lands,”", "per", "the", "Hill.", "—", "Schumer", "recommends", "FERC", "replacement:", "Senate", "Minority", "Leader", "Chuck", "Schumer", "(D-N.Y.)", "has", "recommended", "energy", "lawyer", "Allison", "Clements", "to", "replace", "Cheryl", "LaFleur", "on", "the", "Federal", "Energy", "Regulatory", "Commission,", "E&E", "News", "reports.", "LaFleur", "announced", "last", "week", "that", "she", "would", "not", "seek", "a", "third", "term", "and", "plans", "to", "stay", "on", "the", "commission", "until", "her", "term", "expires", "on", "June", "30.", "“Clements,", "currently", "the", "director", "of", "clean", "energy", "markets", "at", "the", "Energy", "Foundation,", "has", "a", "long", "history", "of", "providing", "clarity", "to", "clean", "energy", "groups", "and", "the", "public", "on", "complicated", "policies", "and", "rulemakings", "at", "FERC,”", "per", "the", "report.", "In", "a", "memo,", "Capital", "Alpha", "suggested", "Clements", "could", "succeed", "FERC", "Chairman", "Neil", "Chatterjee", "if", "a", "Democratic", "president", "takes", "the", "White", "House", "in", "2020.", "Though", "it", "is", "tradition", "for", "the", "president", "to", "defer", "to", "Senate", "leaders", "on", "picks", "for", "the", "commission,", "Trump", "is", "not", "required", "to", "accept", "Schumer’s", "recommendation.", "DAYBOOK", "Today", "The", "Senate", "Energy", "and", "Natural", "Resources", "Committee", "holds", "a", "hearing", "on", "the", "status", "and", "outlook", "of", "energy", "innovation.", "EXTRA", "MILEAGE" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Their", "measure", "already", "has", "the", "backing", "of", "four", "Democratic", "senators", "who", "have", "launched", "bids", "for", "the", "2020", "presidential", "nomination.", "But", "it", "is", "already", "being", "lampooned", "by", "Republicans", "—", "though", "embraced", "by", "progressives", "—", "for", "its", "broad", "aims", "on", "things", "unrelated", "to", "climate,", "including", "increased", "access", "to", "housing,", "health", "care", "and", "education", "for", "lower-income", "communities.", "AD", "AD", "“This", "is", "really", "about", "providing", "justice", "for", "communities", "and", "just", "transitions", "for", "communities,”", "Ocasio-Cortez", "told", "NPR", "in", "an", "interview", "Thursday", "morning.", "“So", "really", "the", "heart", "of", "the", "Green", "New", "Deal", "is", "about", "social", "justice.”", "Ocasio-Cortez", "and", "Markey", "form", "a", "notable", "pairing:", "The", "former", "leveraged", "her", "political", "stardom", "to", "galvanize", "progressives", "around", "a", "demand", "for", "a", "comprehensive", "climate", "plan", "while", "the", "latter", "brings", "gravitas", "to", "the", "proposal", "as", "one", "of", "the", "original", "sponsors", "of", "Barack", "Obama's", "ultimately", "unsuccessful", "cap-and-trade", "plan", "The", "proposal", "is", "a", "nonbinding", "resolution,", "but", "its", "aims", "are", "ambitious.", "The", "Democratic", "resolution", "calls", "for", "the", "United", "States", "to", "achieve", "net-zero", "greenhouse", "gas", "emissions", "within", "ten", "years", "by", "“dramatically", "expanding", "and", "upgrading", "renewable", "power", "sources.”", "It", "stands", "as", "a", "stark", "counterpoint", "to", "the", "Trump", "administration's", "downplaying", "of", "the", "scientific", "consensus", "behind", "climate", "change,", "as", "it", "has", "rolled", "back", "rules", "designed", "to", "contain", "global", "warming", "and", "withdrawn", "from", "the", "Paris", "climate", "accord", "aimed", "at", "reducing", "global", "pollution.", "AD", "AD", "The", "five-page", "resolution", "is", "not", "confined", "to", "climate", "change,", "however.", "It", "promotes", "a", "plethora", "of", "progressive", "ideals", "—", "like", "housing,", "health", "care,", "education,", "unions", "and", "indigenous", "rights,", "which", "are", "only", "indirectly", "related", "to", "Democratic", "climate", "desires.", "“The", "resolution", "is", "clear:", "We", "need", "to", "move", "to", "renewable", "energy", "as", "fast", "as", "possible,”", "said", "Stephen", "O'Hanlon,", "co-founder", "of", "the", "Sunrise", "Movement", "that", "has", "agitated", "for", "such", "a", "strategy.", "That", "youth", "climate", "advocacy", "organization", "brought", "the", "idea", "of", "a", "Green", "New", "Deal", "to", "the", "fore", "in", "Washington", "by", "staging", "sit-in", "protests", "in", "the", "offices", "of", "a", "number", "of", "high-ranking", "Democrats,", "including", "then-Minority", "Leader", "Nancy", "Pelosi", "(D-Calif.).", "Sunrise,", "which", "endorsed", "Ocasio-Cortez", "before", "her", "victory", "over", "then-Rep.", "Joe", "Crowley", "(D)", "in", "the", "New", "York", "primary", "last", "summer,", "worked", "with", "both", "the", "congresswoman's", "and", "Markey's", "offices", "to", "craft", "the", "resolution.", "AD", "AD", "“If", "we’re", "moving", "to", "100", "percent", "clean", "and", "renewable", "energy", "in", "10", "years,”", "O'Hanlon", "added,", "“there", "won’t", "be", "the", "incentive", "to", "build", "new", "coal", "or", "fossil", "fuel", "infrastructure.”", "At", "least", "four", "Senate", "Democrats", "currently", "running", "for", "president", "—", "Cory", "Booker", "of", "New", "Jersey,", "Kirsten", "Gillibrand", "of", "New", "York,", "Kamala", "Harris", "of", "California", "and", "Elizabeth", "Warren", "of", "Massachusetts", "—", "will", "co-sponsor", "the", "plan,", "spokespeople", "for", "the", "senators", "confirmed.", "Sen.", "Bernie", "Sanders", "(I-Vt.),", "who", "is", "considering", "another", "run", "for", "president,", "is", "also", "backing", "the", "plan.", "All", "five", "senators", "had", "previously", "endorsed", "the", "concept", "of", "the", "Green", "New", "Deal.", "In", "total,", "nine", "senators", "and", "60", "House", "members", "are", "on", "board,", "according", "to", "Markey's", "office.", "The", "supporters", "include", "Congressional", "Progressive", "Caucus", "leaders", "Mark", "Pocan", "(Wis.)", "and", "Pramila", "Jayapal", "(Wash.),", "as", "well", "as", "Ocasio-Cortez", "allies", "Ro", "Khanna", "(Calif.),", "Rashida", "Tlaib", "(Mich.),", "and", "Joe", "Neguse", "(Colo.).", "AD", "AD", "Markey", "and", "Ocasio-Cortez", "are", "expected", "to", "formally", "introduce", "their", "resolution", "on", "Thursday", "afternoon", "with", "“dozens”", "of", "supporters", "among", "congressional", "Democrats,", "according", "to", "a", "source", "with", "knowledge", "of", "the", "rollout", "who", "was", "not", "authorized", "to", "discuss", "it", "publicly.", "Their", "proposal", "stipulates", "that", "any", "infrastructure", "deal", "struck", "with", "President", "Trump", "and", "other", "Republicans", "must", "address", "climate", "change,", "such", "as", "by", "building", "resilience", "to", "extreme", "weather", "events.", "It", "gives", "progressives", "something", "many", "of", "them", "have", "been", "itching", "for:", "The", "promise", "of", "a", "guaranteed", "high-paying", "job", "for", "every", "American.", "Among", "its", "demands", "are", "new", "trade", "rules", "to", "“stop", "the", "transfer", "of", "jobs", "and", "pollution", "overseas.”", "The", "proposal", "also", "calls", "for", "a", "sweeping", "overhaul", "of", "the", "transportation", "sector", "“as", "much", "as", "is", "technologically", "possible,”", "with", "investments", "in", "zero-emissions", "vehicles", "along", "with", "high-speed", "rail", "and", "other", "public", "transit.", "AD", "AD", "“We", "have", "something", "very", "ambitious", "in", "mind,", "something", "akin", "to", "what", "we", "undertook", "in", "the", "Second", "World", "War,”", "said", "Robert", "Hockett,", "a", "professor", "at", "Cornell", "University", "who", "provided", "input", "on", "the", "plan.", "“It", "gives", "us", "a", "document", "around", "which", "to", "galvanize", "planning", "and", "action,", "and", "gives", "political", "figures", "running", "for", "office", "something", "they", "can", "sign", "onto", "or", "repudiate.", "There", "won’t", "be", "room", "anymore", "for", "just", "supporting", "'the", "concept.'", "”", "But", "one", "crucial", "thing", "the", "proposal", "does", "not", "spell", "out:", "How", "the", "federal", "government", "is", "expected", "to", "pay", "for", "or", "achieve", "these", "broad", "aims.", "The", "Green", "New", "Deal", "would" ] ], [ [ "be", "paid", "for", "“the", "same", "way", "we", "paid", "for", "the", "original", "New", "Deal,", "World", "War", "II,", "the", "bank", "bailouts,", "tax", "cuts", "for", "the", "rich", "and", "decades", "of", "war", "—", "with", "public", "money", "appropriated", "by", "Congress,”", "Ocasio-Cortez", "said,", "according", "to", "the", "Associated", "Press.", "AD", "AD", "That", "gave", "Republicans", "on", "Capitol", "Hill", "an", "opening", "to", "attack", "the", "plan", "as", "an", "ill-conceived", "wishlist", "—", "even", "before", "it", "was", "formally", "unveiled.", "“Wealth", "transfer", "schemes", "suggested", "in", "the", "radical", "policies", "like", "the", "Green", "New", "Deal", "may", "not", "be", "the", "best", "path", "to", "community", "prosperity,”", "said", "Rep.", "John", "Shimkus", "(Ill.),", "the", "top", "Republican", "on", "the", "House", "Energy", "and", "Commerce", "subcommittee", "on", "climate", "change", "and", "other", "environmental", "issues.", "That", "House", "panel", "was", "one", "of", "two", "—", "along", "with", "the", "Natural", "Resources", "Committee", "—", "to", "hold", "hearings", "on", "climate", "change", "on", "Wednesday.", "After", "two", "years", "out", "of", "power", "in", "Congress", "and", "the", "White", "House,", "Democrat", "are", "sending", "a", "message", "that", "the", "planet's", "warming", "will", "finally", "once", "again", "be", "a", "priority", "in", "Washington", "by", "scheduling", "that", "pair", "of", "hearings", "as", "among", "the", "first", "held", "in", "the", "new", "Congress.", "AD", "AD", "“Today", "we", "turn", "the", "page", "on", "this", "committee", "from", "climate", "change", "denial", "to", "climate", "action,”", "Natural", "Resources", "Chairman", "Raúl", "Grijalva", "(D-Ariz)", "said.", "Ocasio-Cortez", "and", "Markey’s", "proposal", "does", "not", "include", "an", "outright", "ban", "on", "fossil", "fuels,", "which", "some", "close", "to", "the", "bill", "see", "as", "a", "concession", "to", "moderates", "and", "labor", "groups.", "Some", "environmental", "activists", "defended", "that", "decision,", "saying", "the", "investments", "in", "green", "energy", "would", "make", "the", "ban", "unnecessary.", "\"There's", "some", "bold", "and", "visionary", "pieces", "in", "the", "Green", "New", "Deal", "resolution,\"", "said", "Erich", "Pica,", "president", "of", "Friends", "of", "the", "Earth,", "a", "climate", "advocacy", "group.", "\"But", "the", "failure", "to", "mention", "and", "explicitly", "state", "that", "we", "have", "to", "end", "the", "era", "of", "fossil", "fuels", "is", "just", "a", "huge", "missed", "opportunity", "to", "be", "real", "about", "where", "we", "are", "and", "where", "we", "need", "to", "go.\"", "AD", "The", "plan", "also", "does", "not", "explicitly", "exclude", "some", "major", "forms", "of", "low-emissions", "electricity", "—", "mainly,", "nuclear", "energy", "and", "hydropower", "—", "as", "some", "observers", "worried", "it", "would.", "AD", "While", "environmentalists", "have", "previously", "protested", "both", "forms", "of", "power", "over", "concerns", "like", "the", "risk", "of", "meltdown", "or", "the", "fragmentation", "of", "river", "habitat,", "climate", "analysts", "—", "including", "those", "with", "the", "United", "Nations", "Intergovernmental", "Panel", "on", "Climate", "Change", "(IPCC)", "—", "say", "both", "are", "necessary", "today", "to", "reduce", "emissions", "enough", "to", "stave", "off", "the", "worst", "effects", "of", "climate", "change.", "An", "IPCC", "report", "in", "October", "describing", "how", "the", "world", "has", "just", "over", "a", "decade", "to", "hold", "global", "warming", "to", "moderate", "levels", "proved", "to", "be", "a", "big", "motivating", "factor", "in", "the", "recent", "wave", "of", "climate", "activism.", "Ocasio-Cortez", "and", "Markey’s", "resolution", "cites", "those", "findings.", "THERMOMETER", "—", "The", "toll", "extreme", "weather", "takes:", "Last", "year’s", "disastrous", "series", "of", "hurricanes,", "wildfires", "and", "extreme", "weather", "events", "killed", "at", "least", "247", "people", "and", "cost", "the", "nation", "about", "$91", "billion.", "Of", "the", "14", "separate", "events", "noted", "in", "the", "data", "released", "by", "the", "National", "Oceanic", "and", "Atmospheric", "Administration,", "$73", "billion", "of", "the", "damage", "was", "attributed", "to", "Hurricanes", "Michael", "and", "Florence", "and", "the", "spate", "of", "wildfires", "in", "the", "West,", "The", "Post’s", "Brady", "Dennis", "and", "Chris", "Mooney", "report.", "While", "2018", "did", "not", "eclipse", "the", "$306", "billion", "in", "damage", "caused", "by", "devastating", "natural", "catastrophes", "in", "2017,", "“the", "most", "recent", "numbers", "continue", "what", "some", "experts", "call", "an", "alarming", "trend", "toward", "an", "increasing", "number", "of", "billion-dollar", "disasters,", "fueled,", "at", "least", "in", "part,", "by", "the", "warming", "climate.”", "Put", "in", "perspective:", "“Since", "1980,", "the", "United", "States", "has", "experienced", "241", "weather", "and", "climate", "disasters", "where", "the", "overall", "damage", "reached", "or", "exceeded", "$1", "billion,", "when", "adjusted", "for", "inflation,”", "Dennis", "and", "Mooney", "write.", "“Between", "1980", "and", "2013,", "according", "to", "NOAA,", "the", "nation", "averaged", "roughly", "half", "a", "dozen", "such", "disasters", "a", "year.", "Over", "the", "most", "recent", "five", "years,", "that", "number", "has", "jumped", "to", "more", "than", "12.”", "Deke", "Arndt,", "chief", "of", "the", "monitoring", "branch", "at", "NOAA’s", "National", "Centers", "for", "Environmental", "Information,", "told", "reporters", "the", "nation", "had", "“about", "twice", "the", "number", "of", "billion", "dollar", "disasters", "than", "we", "have", "in", "an", "average", "year", "over", "the", "last", "40", "years", "or", "so.”", "Man,", "it’s", "a", "hot", "one:", "To", "boot,", "NASA", "and", "NOAA", "scientists", "made", "a", "separate", "announcement", "Wednesday", "that", "the", "Earth’s", "average", "surface", "temperature", "last", "year", "was", "officially", "the", "fourth", "highest", "in", "nearly", "140", "years", "of", "data.", "The", "past", "four", "years", "have", "been", "the", "warmest", "on", "record,", "according", "to", "the", "data,", "and", "nine", "of", "the", "10", "warmest", "years", "on", "record", "have", "occurred", "since", "2005.", "And", "in", "most", "or", "all", "of", "those", "years,", "the", "temperature", "on", "Earth", "was", "at", "least", "1.8", "degrees", "Fahrenheit", "above", "the", "average", "19th", "century", "temperature.", "Gavin", "Schmidt,", "director", "of", "the", "Goddard", "Institute", "for", "Space", "Studies", "at", "NASA,", "said", "it", "was", "“quite", "clearly", "the", "fourth-warmest", "year", "in", "our", "record,", "which", "goes", "back", "to", "1880,", "and", "probably", "was", "warmer", "than", "many", "hundreds", "of", "years", "before" ] ], [ [ "that.”", "—", "Earth", "is", "looking", "a", "lot", "like", "it", "did", "during", "an", "ancient", "warming", "period:", "The", "planet", "is", "paralleling", "some", "of", "the", "conditions", "from", "the", "most", "recent", "major", "warm", "period", "115,000", "years", "ago.", "One", "clue", "for", "researchers", "was", "the", "discovery", "of", "ancient", "plants", "that", "emerged", "from", "retreating", "mountain", "glaciers", "in", "northeastern", "Canada,", "The", "Post’s", "Chris", "Mooney", "reports.", "The", "plants", "they", "found", "were", "“very", "old", "indeed,", "and", "had", "probably", "last", "grown", "in", "these", "spots", "some", "115,000", "years", "ago,”", "he", "writes.", "“That’s", "the", "last", "time", "the", "areas", "were", "actually", "not", "covered", "by", "ice,", "the", "scientists", "believe.”", "But", "there’s", "a", "major", "(and", "troubling)", "discrepancy", "between", "current", "and", "ancient", "conditions:", "Sea", "levels", "were", "20", "to", "30", "feet", "higher", "back", "then.", "“Scientists", "are", "now", "intensely", "debating", "precisely", "which", "processes", "could", "have", "played", "out", "then", "—", "and", "how", "soon", "they’ll", "play", "out", "again.", "After", "all,", "West", "Antarctica", "has", "already", "been", "shown,", "once", "again,", "to", "be", "beginning", "a", "retreat.”", "POWER", "PLAYS", "—", "Senate", "Democrat", "trolls", "Chamber", "of", "Commerce:", "Sen.", "Sheldon", "Whitehouse", "(D-R.I.)", "entered", "a", "tongue-in-cheek", "submission", "in", "a", "$25,000-prize", "contest", "being", "held", "by", "the", "business", "lobbying", "group", "for", "the", "\"best,", "most", "viable", "ideas", "for", "a", "long-term", "sustainable", "funding", "source", "for", "infrastructure.\"", "The", "liberal", "senator", "recommended", "eliminating", "fossil-fuel", "subsidies", "and", "placing", "a", "price", "on", "carbon.", "\"One", "would", "expect", "a", "business", "organization", "whose", "members", "can’t", "grow", "or", "thrive", "in", "the", "absence", "of", "an", "expanding", "economy", "or", "reliable", "infrastructure", "to", "be", "on", "the", "front", "lines", "of", "this", "fight,\"", "he", "wrote.", "\"Unfortunately...", "the", "U.S.", "Chamber", "of", "Commerce", "[has]", "not", "supported", "climate", "action.\"", "Not", "the", "first", "time", "he", "has", "taken", "aim", "at", "the", "chamber:", "Whitehouse", "recently", "challenged", "claims", "made", "by", "the", "trade", "group", "in", "support", "of", "the", "oil", "industry", "in", "a", "friend-of-the-court", "brief", "filed", "in", "a", "lawsuit", "between", "four", "California", "local", "governments", "and", "major", "oil", "companies.", "—", "Park", "Service", "won’t", "use", "visitor", "fees", "for", "park", "operations:", "The", "National", "Park", "Service", "has", "reportedly", "decided", "to", "use", "congressionally", "appropriated", "funds", "to", "pay", "for", "maintenance", "and", "staffing", "during", "the", "partial", "government", "shutdown,", "reversing", "an", "earlier", "move", "to", "use", "park", "visitor", "entrance", "fees,", "the", "Hill", "reports,", "citing", "an", "internal", "Park", "Service", "memo.", "“We", "have", "confirmed", "with", "the", "[White", "House]", "Office", "of", "Management", "and", "Budget", "that", "the", "NPS", "can", "move", "obligations", "made", "during", "the", "appropriations", "lapse", "from", "the", "FLREA", "fee", "account", "and", "apply", "those", "obligations", "to", "the", "National", "Park", "Service", "annual", "operating", "account,”", "NPS", "deputy", "director", "Dan", "Smith", "said", "in", "the", "memo,", "per", "the", "report.", "Meanwhile:", "Rep.", "Betty", "McCollum", "(D-Minn.),", "the", "chairwoman", "of", "the", "House", "Appropriations", "subcommittee", "that", "oversees", "the", "Park", "Service,", "called", "for", "an", "investigation", "of", "the", "Trump", "administration’s", "initial", "move", "to", "use", "entrance", "fees.", "“It", "is", "evident", "that", "NPS", "and", "DOI", "allowed", "national", "parks", "sites", "to", "remain", "open", "without", "adequate", "staff", "and", "services", "to", "protect", "the", "parks", "and", "their", "visitors,”", "she", "wrote", "in", "a", "letter", "to", "the", "Government", "Accountability", "Office.", "During", "a", "hearing", "Wednesday,", "McCollum", "said", "she’s", "“more", "than", "convinced,", "sadly,", "that", "the", "administration", "has", "ignored", "the", "law", "and", "the", "policies", "that", "the", "agencies", "have", "had", "in", "place", "for", "years", "to", "protect", "our", "citizens", "and", "our", "public", "lands,”", "per", "the", "Hill.", "—", "Schumer", "recommends", "FERC", "replacement:", "Senate", "Minority", "Leader", "Chuck", "Schumer", "(D-N.Y.)", "has", "recommended", "energy", "lawyer", "Allison", "Clements", "to", "replace", "Cheryl", "LaFleur", "on", "the", "Federal", "Energy", "Regulatory", "Commission,", "E&E", "News", "reports.", "LaFleur", "announced", "last", "week", "that", "she", "would", "not", "seek", "a", "third", "term", "and", "plans", "to", "stay", "on", "the", "commission", "until", "her", "term", "expires", "on", "June", "30.", "“Clements,", "currently", "the", "director", "of", "clean", "energy", "markets", "at", "the", "Energy", "Foundation,", "has", "a", "long", "history", "of", "providing", "clarity", "to", "clean", "energy", "groups", "and", "the", "public", "on", "complicated", "policies", "and", "rulemakings", "at", "FERC,”", "per", "the", "report.", "In", "a", "memo,", "Capital", "Alpha", "suggested", "Clements", "could", "succeed", "FERC", "Chairman", "Neil", "Chatterjee", "if", "a", "Democratic", "president", "takes", "the", "White", "House", "in", "2020.", "Though", "it", "is", "tradition", "for", "the", "president", "to", "defer", "to", "Senate", "leaders", "on", "picks", "for", "the", "commission,", "Trump", "is", "not", "required", "to", "accept", "Schumer’s", "recommendation.", "DAYBOOK", "Today", "The", "Senate", "Energy", "and", "Natural", "Resources", "Committee", "holds", "a", "hearing", "on", "the", "status", "and", "outlook", "of", "energy", "innovation.", "EXTRA", "MILEAGE" ] ] ]
[ [ "en" ], [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Norway", "Dropped", "For", "Austria", "Locations", "for", "the", "next", "James", "Bond", "adventure", "are", "shaping", "up", "as", "shooting", "is", "scheduled", "to", "start", "in", "November", "or", "December", "Share", "The", "Story", "Norway", "has", "been", "dropped", "as", "a", "shooting", "location", "for", "Bond", "24", "as", "pre-production", "ramps", "up", "on", "the", "next", "James", "Bond", "adventure.", "According", "to", "reports,", "producers", "and", "director", "Sam", "Mendes", "were", "earlier", "interested", "in", "filming", "on", "location", "in", "the", "country,", "but", "a", "re-write", "of", "the", "script", "and", "Norway", "lacking", "financial", "benefits", "to", "production", "companies", "have", "shifted", "their", "attention", "elsewhere.", "Stunt", "coordinator", "Gary", "Powell", "revealed", "via", "social", "media", "last", "month", "that", "Austria", "was", "being", "scouted", "for", "an", "action", "sequence.", "007", "has", "already", "visited", "in", "Bregenz,", "Austria,", "in", "the", "Daniel", "Craig", "era", "for", "the", "opera", "sequence", "in", "'Quantum", "of", "Solace.'", "Australian", "film", "maker", "Jason", "Roberts,", "who", "is", "based", "in", "Svalbard,", "Norway,", "told", "newspaper", "Dagbladet", "that", "the", "northern", "islands", "were", "being", "considered", "for", "Bond", "24.", "The", "producers", "are", "said", "to", "have", "now", "turned", "instead", "to", "the", "Austrian", "Alps.", "Roberts", "explained", "that", "the", "cost", "of", "shooting", "in", "Norway", "and", "the", "lack", "of", "an", "incentive", "scheme", "for", "film", "productions", "hampered", "their", "chances.", "Sigmund", "Elias", "Holm", "of", "the", "West", "Norwegian", "Film", "Commission", "agreed", "that", "financial", "considerations", "were", "probably", "behind", "the", "decision", "to", "shoot", "in", "Austria", "instead,", "but", "added", "\"we", "do", "not", "know", "if", "the", "script", "was", "modified", "by", "artistic", "reasons", "or", "because", "it", "was", "too", "difficult", "to", "film", "in", "Norway.\"", "Yesterday,", "MI6", "reported", "that", "the", "new", "script", "by", "Neal", "Purvis", "and", "Robert", "Wade", "had", "been", "given", "the", "go", "ahead", "for", "filming", "with", "shooting", "expected", "to", "start", "in", "late", "November", "to", "early", "December.", "Share", "The", "Story" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Norway", "Dropped", "For", "Austria", "Locations", "for", "the", "next", "James", "Bond", "adventure", "are", "shaping", "up", "as", "shooting", "is", "scheduled", "to", "start", "in", "November", "or", "December", "Share", "The", "Story", "Norway", "has", "been", "dropped", "as", "a", "shooting", "location", "for", "Bond", "24", "as", "pre-production", "ramps", "up", "on", "the", "next", "James", "Bond", "adventure.", "According", "to", "reports,", "producers", "and", "director", "Sam", "Mendes", "were", "earlier", "interested", "in", "filming", "on", "location", "in", "the", "country,", "but", "a", "re-write", "of", "the", "script", "and", "Norway", "lacking", "financial", "benefits", "to", "production", "companies", "have", "shifted", "their", "attention", "elsewhere.", "Stunt", "coordinator", "Gary", "Powell", "revealed", "via", "social", "media", "last", "month", "that", "Austria", "was", "being", "scouted", "for", "an", "action", "sequence.", "007", "has", "already", "visited", "in", "Bregenz,", "Austria,", "in", "the", "Daniel", "Craig", "era", "for", "the", "opera", "sequence", "in", "'Quantum", "of", "Solace.'", "Australian", "film", "maker", "Jason", "Roberts,", "who", "is", "based", "in", "Svalbard,", "Norway,", "told", "newspaper", "Dagbladet", "that", "the", "northern", "islands", "were", "being", "considered", "for", "Bond", "24.", "The", "producers", "are", "said", "to", "have", "now", "turned", "instead", "to", "the", "Austrian", "Alps.", "Roberts", "explained", "that", "the", "cost", "of", "shooting", "in", "Norway", "and", "the", "lack", "of", "an", "incentive", "scheme", "for", "film", "productions", "hampered", "their", "chances.", "Sigmund", "Elias", "Holm", "of", "the", "West", "Norwegian", "Film", "Commission", "agreed", "that", "financial", "considerations", "were", "probably", "behind", "the", "decision", "to", "shoot", "in", "Austria", "instead,", "but", "added", "\"we", "do", "not", "know", "if", "the", "script", "was", "modified", "by", "artistic", "reasons", "or", "because", "it", "was", "too", "difficult", "to", "film", "in", "Norway.\"", "Yesterday,", "MI6", "reported", "that", "the", "new", "script", "by", "Neal", "Purvis", "and", "Robert", "Wade", "had", "been", "given", "the", "go", "ahead", "for", "filming", "with", "shooting", "expected", "to", "start", "in", "late", "November", "to", "early", "December.", "Share", "The", "Story" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Introduction", "to", "FireEye", "TAP", "The", "FireEye", "Threat", "Analytics", "Platform", "is", "a", "cloud-based", "solution", "that", "enables", "security", "teams", "to", "identify", "and", "effectively", "respond", "to", "cyber", "threats", "by", "layering", "enterprise-generated", "event", "data", "with", "real-time", "threat", "intelligence", "from", "FireEye.", "The", "platform", "increases", "the", "overall", "visibility", "into", "the", "threat", "landscape", "by", "leveraging", "the", "FireEye", "Threat", "Prevention", "Platforms’", "rich", "insights", "into", "threat", "actor", "profiles", "and", "behavior.", "More", "details", "can", "be", "found", "here:", "FireEye", "Threat", "Analytics", "Platform", "Use", "Cases", "Addressing", "a", "business", "need", "is", "the", "concept", "of", "\"Identity", "Explorer\",", "using", "which", "administrators", "and", "case", "analysts", "can", "review", "the", "identity", "related", "incidents", "from", "the", "enterprise.", "The", "ForgeRock-FireEye", "TAP", "based", "solution", "will", "help", "heighten", "the", "sense", "of", "security,", "especially", "one", "related", "to", "BYOD,", "such", "as", "new", "mobile", "device", "registrations.", "A", "sample", "case", "for", "detecting", "fraudulent", "device", "registrations", "is", "documented", "here.", "This", "is", "a", "typical", "use", "case", "wherein", "a", "user", "registers", "a", "new", "device", "or", "logs", "in", "with", "the", "new", "device", "from", "an", "unknown", "location.", "This", "is", "deemed", "a", "fraudulent", "login.", "The", "key", "to", "correctly", "detecting", "fraud", "in", "this", "case", "is", "knowing", "that", "the", "new", "location", "is", "not", "one", "the", "user", "would", "normally", "login", "from.", "Sample", "rSyslog", "Configuration", "$ModLoad", "imfile", "$InputFilePollInterval", "10", "$PrivDropToGroup", "adm", "$WorkDirectory", "/var/spool/rsyslog", "$InputFileName", "/home/ec2-user/openam12/openam/debug/Authentication", "$InputFileTag", "debugAuth:", "$InputFileStateFile", "stat-debugAuth12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "$InputFileName", "/home/ec2-user/openam12/openam/log/amSSO.access", "$InputFileTag", "amSSO:", "$InputFileStateFile", "stat-amSSO12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "$InputFileName", "/opt/demo/tomcat7b/bin/access.log", "$InputFileTag", "tomcat7baccess:", "$InputFileStateFile", "stat-tomcat7baccess12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "#", "Add", "a", "tag", "for", "file", "events", "$template", "TAPFormatFile,\"<%pri%>%protocol-version%", "%app-name%", "%procid%", "%msgid%", "%msg%", "\"", "#", "Send", "to", "TAP", "then", "discard", "if", "$programname", "==", "'debugAuth'", "then", "@@127.0.0.1:516;TAPFormatFile", "if", "$programname", "==", "'amSSO'", "then", "@@127.0.0.1:516;TAPFormatFile", "if", "$programname", "==", "'tomcat7baccess'", "then", "@@127.0.0.1:516;TAPFormatFile", "OpenAM", "Debug", "Logging", "Enable", "debug", "logging", "for", "Category:", "Authentication", "in", "/openam/Debug.jsp", "FireEye", "Communications", "Broker", "Setup", "You", "would", "setup", "a", "proprietary", "software", "on", "your", "unix", "server", "that", "listens", "on", "TCP:516", "and", "routes", "incoming", "data", "to", "the", "FireEye", "TAP", "servers.", "Viewing", "Parsed", "Log", "Messages", "in", "TAP", "Search", "for", "class:forgerock", "(this", "would", "be", "the", "name", "of", "your", "integration", "as", "agreed", "upon", "with", "FireEye),", "and", "for", "program:amauth.", "Other", "examples", "are", "program:amsso", "and", "program:ampolicy.", "If", "parsing", "is", "working", "correctly,", "the", "TAP", "administration", "would", "see", "messages", "corresponding", "to", "the", "program", "name", "show", "up.", "In", "this", "screen", "shot", "the", "client's", "IP", "is", "hidden.", "The", "next", "step", "is", "to", "create", "ALERTS", "that", "key", "off", "on", "certain", "field", "values", "parsed", "out", "of", "the", "logs.", "Here", "is", "a", "sample", "alert", "for", "a", "user", "logging", "on", "from", "an", "unknown", "location:", "The", "following", "screenshot", "shows", "a", "list", "of", "locations", "the", "user,", "User.120", "has", "signed", "on", "from", "over", "the", "past", "month.", "The", "logins", "from", "Tokyo,", "Frankfurt", "and", "Singapore", "could", "be", "deemed", "anomalous,", "and", "corresponding", "logs", "added", "to", "a", "new", "incident", "to", "investigate", "this", "behavior.", "Here", "is", "the", "device", "information", "shown", "in", "TAP:", "Here", "I", "show", "how", "logs", "from", "TAP", "can", "be", "added", "to", "a", "previously", "created,", "or", "new", "incident.", "The", "analyst", "assigned", "to", "service", "the", "alert,", "and", "incident", "would", "need", "to", "login", "to", "TAP", "and", "investigate", "using", "session", "parameters", "such", "as", "timestamp,", "device", "name,", "OpenAM", "server", "name", "and", "possibly", "create", "a", "request", "to", "revoke", "or", "temporarily", "disable", "access", "for", "User.120" ], [ "in", "OpenAM." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "ro", "ro", "ro", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "ro", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "nl", "nl" ] ]
[ [ [ "Introduction", "to", "FireEye", "TAP", "The", "FireEye", "Threat", "Analytics", "Platform", "is", "a", "cloud-based", "solution", "that", "enables", "security", "teams", "to", "identify", "and", "effectively", "respond", "to", "cyber", "threats", "by", "layering", "enterprise-generated", "event", "data", "with", "real-time", "threat", "intelligence", "from", "FireEye.", "The", "platform", "increases", "the", "overall", "visibility", "into", "the", "threat", "landscape", "by", "leveraging", "the", "FireEye", "Threat", "Prevention", "Platforms’", "rich", "insights", "into", "threat", "actor", "profiles", "and", "behavior.", "More", "details", "can", "be", "found", "here:", "FireEye", "Threat", "Analytics", "Platform", "Use", "Cases", "Addressing", "a", "business", "need", "is", "the", "concept", "of", "\"Identity", "Explorer\",", "using", "which", "administrators", "and", "case", "analysts", "can", "review", "the", "identity", "related", "incidents", "from", "the", "enterprise.", "The", "ForgeRock-FireEye", "TAP", "based", "solution", "will", "help", "heighten", "the", "sense", "of", "security,", "especially", "one", "related", "to", "BYOD,", "such", "as", "new", "mobile", "device", "registrations.", "A", "sample", "case", "for", "detecting", "fraudulent", "device", "registrations", "is", "documented", "here.", "This", "is", "a", "typical", "use", "case", "wherein", "a", "user", "registers", "a", "new", "device", "or", "logs", "in", "with", "the", "new", "device", "from", "an", "unknown", "location.", "This", "is", "deemed", "a", "fraudulent", "login.", "The", "key", "to", "correctly", "detecting", "fraud", "in", "this", "case", "is", "knowing", "that", "the", "new", "location", "is", "not", "one", "the", "user", "would", "normally", "login", "from.", "Sample", "rSyslog", "Configuration", "$ModLoad", "imfile", "$InputFilePollInterval", "10", "$PrivDropToGroup", "adm", "$WorkDirectory", "/var/spool/rsyslog", "$InputFileName", "/home/ec2-user/openam12/openam/debug/Authentication", "$InputFileTag", "debugAuth:", "$InputFileStateFile", "stat-debugAuth12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "$InputFileName", "/home/ec2-user/openam12/openam/log/amSSO.access", "$InputFileTag", "amSSO:", "$InputFileStateFile", "stat-amSSO12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "$InputFileName", "/opt/demo/tomcat7b/bin/access.log", "$InputFileTag", "tomcat7baccess:", "$InputFileStateFile", "stat-tomcat7baccess12-access", "#this", "must", "be", "unique", "for", "each", "file", "being", "polled", "$InputFileSeverity", "info", "$InputFilePersistStateInterval", "20000", "$InputRunFileMonitor", "#", "Add", "a", "tag", "for", "file", "events", "$template", "TAPFormatFile,\"<%pri%>%protocol-version%", "%app-name%", "%procid%", "%msgid%", "%msg%", "\"", "#", "Send", "to", "TAP", "then", "discard", "if", "$programname", "==", "'debugAuth'", "then", "@@127.0.0.1:516;TAPFormatFile", "if", "$programname", "==", "'amSSO'", "then", "@@127.0.0.1:516;TAPFormatFile", "if", "$programname", "==", "'tomcat7baccess'", "then", "@@127.0.0.1:516;TAPFormatFile", "OpenAM", "Debug", "Logging", "Enable", "debug", "logging", "for", "Category:", "Authentication", "in", "/openam/Debug.jsp", "FireEye", "Communications", "Broker", "Setup", "You", "would", "setup", "a", "proprietary", "software", "on", "your", "unix", "server", "that", "listens", "on", "TCP:516", "and", "routes", "incoming", "data", "to", "the", "FireEye", "TAP", "servers.", "Viewing", "Parsed", "Log", "Messages", "in", "TAP", "Search", "for", "class:forgerock", "(this", "would", "be", "the", "name", "of", "your", "integration", "as", "agreed", "upon", "with", "FireEye),", "and", "for", "program:amauth.", "Other", "examples", "are", "program:amsso", "and", "program:ampolicy.", "If", "parsing", "is", "working", "correctly,", "the", "TAP", "administration", "would", "see", "messages", "corresponding", "to", "the", "program", "name", "show", "up.", "In", "this", "screen", "shot", "the", "client's", "IP", "is", "hidden.", "The", "next", "step", "is", "to", "create", "ALERTS", "that", "key", "off", "on", "certain", "field", "values", "parsed", "out", "of", "the", "logs.", "Here", "is", "a", "sample", "alert", "for", "a", "user", "logging", "on", "from", "an", "unknown", "location:", "The", "following", "screenshot", "shows", "a", "list", "of", "locations", "the", "user,", "User.120", "has", "signed", "on", "from", "over", "the", "past", "month.", "The", "logins", "from", "Tokyo,", "Frankfurt", "and", "Singapore", "could", "be", "deemed", "anomalous,", "and", "corresponding", "logs", "added", "to", "a", "new", "incident", "to", "investigate", "this", "behavior.", "Here", "is", "the", "device", "information", "shown", "in", "TAP:", "Here", "I", "show", "how", "logs", "from", "TAP", "can", "be", "added", "to", "a", "previously", "created,", "or", "new", "incident.", "The", "analyst", "assigned", "to", "service", "the", "alert,", "and", "incident", "would", "need", "to", "login", "to", "TAP", "and", "investigate", "using", "session", "parameters", "such", "as", "timestamp,", "device", "name,", "OpenAM", "server", "name", "and", "possibly", "create", "a", "request", "to", "revoke", "or", "temporarily", "disable", "access", "for", "User.120" ] ], [ [ "in", "OpenAM." ] ] ]
[ [ "en" ], [ "nl" ] ]
[ "mono" ]
[ [ "When", "I", "decided", "to", "change", "my", "format", "of", "my", "blog", "to", "a", "more", "formulaic", "style", "I", "was", "afraid", "of", "this", "day;", "the", "day", "when", "I", "have", "to", "acknowledge", "that", "not", "all", "teas", "can", "last", "fifteen", "or", "more", "infusions.", "I", "am", "not", "disappointed", "that", "if", "I", "were", "going", "to", "brew", "this", "again", "I", "would", "probably", "stop", "at", "the", "second", "infusion,", "but", "sometimes", "we", "have", "to", "admit", "that", "it", "is", "perfectly", "fine", "for", "a", "tea", "be", "all", "used", "up", "after", "x", "amount", "of", "infusions.", "Sure", "I", "am", "probably", "that", "person", "who", "rings", "out", "as", "much", "as", "I", "can", "from", "my", "leaves,", "but", "sometimes", "I", "prefer", "a", "shorter", "more", "memorable", "experience", "than", "a", "long", "drawn", "out", "tea", "session.", "Regardless", "of", "the", "how", "many", "infusions", "I", "got", "out", "of", "this", "I", "still", "think", "it", "was", "a", "pretty", "good", "tea,", "currently", "it", "is", "being", "sold", "at", "$3.50", "for", "a", "10g", "sample,", "or", "$28.80", "for", "100g;", "while", "this", "tea", "is", "approaching", "its", "first", "birthday", "and", "Yunomi.Us", "is", "probably", "going", "to", "have", "a", "sale", "to", "get", "rid", "of", "their", "2014", "stock", "after", "the", "spring", "harvest", "comes", "in", "it", "is", "still", "nice.", "It", "doesn’t", "taste", "like", "it", "is", "starting", "to", "go", "sale,", "but", "you", "readers", "who", "are", "of", "a", "more", "economic", "mindset", "then", "me", "might", "want", "to", "wait", "on", "purchasing", "it,", "in", "a", "little", "more", "than", "a", "month", "I", "imagine", "many", "of", "us", "are", "going", "to", "be", "drinking", "2015", "Shincha", "for", "the", "same", "price", "as", "this", "tea", "right", "now." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "When", "I", "decided", "to", "change", "my", "format", "of", "my", "blog", "to", "a", "more", "formulaic", "style", "I", "was", "afraid", "of", "this", "day;", "the", "day", "when", "I", "have", "to", "acknowledge", "that", "not", "all", "teas", "can", "last", "fifteen", "or", "more", "infusions.", "I", "am", "not", "disappointed", "that", "if", "I", "were", "going", "to", "brew", "this", "again", "I", "would", "probably", "stop", "at", "the", "second", "infusion,", "but", "sometimes", "we", "have", "to", "admit", "that", "it", "is", "perfectly", "fine", "for", "a", "tea", "be", "all", "used", "up", "after", "x", "amount", "of", "infusions.", "Sure", "I", "am", "probably", "that", "person", "who", "rings", "out", "as", "much", "as", "I", "can", "from", "my", "leaves,", "but", "sometimes", "I", "prefer", "a", "shorter", "more", "memorable", "experience", "than", "a", "long", "drawn", "out", "tea", "session.", "Regardless", "of", "the", "how", "many", "infusions", "I", "got", "out", "of", "this", "I", "still", "think", "it", "was", "a", "pretty", "good", "tea,", "currently", "it", "is", "being", "sold", "at", "$3.50", "for", "a", "10g", "sample,", "or", "$28.80", "for", "100g;", "while", "this", "tea", "is", "approaching", "its", "first", "birthday", "and", "Yunomi.Us", "is", "probably", "going", "to", "have", "a", "sale", "to", "get", "rid", "of", "their", "2014", "stock", "after", "the", "spring", "harvest", "comes", "in", "it", "is", "still", "nice.", "It", "doesn’t", "taste", "like", "it", "is", "starting", "to", "go", "sale,", "but", "you", "readers", "who", "are", "of", "a", "more", "economic", "mindset", "then", "me", "might", "want", "to", "wait", "on", "purchasing", "it,", "in", "a", "little", "more", "than", "a", "month", "I", "imagine", "many", "of", "us", "are", "going", "to", "be", "drinking", "2015", "Shincha", "for", "the", "same", "price", "as", "this", "tea", "right", "now." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Another", "year", "is", "upon", "us,", "and", "with", "it", "the", "opportunity", "to", "take", "things", "up", "a", "notch.", "You", "haven’t", "already", "broken", "any", "of", "those", "resolutions,", "have", "you?", "Plan", "at", "least", "one", "trip", "that’s", "more", "ambitious", "than", "anything", "you’ve", "previously", "tried.", "For", "some", "riders", "this", "could", "be", "finally", "taking", "the", "plunge", "into", "multi-day", "touring", "or", "dual-sport", "riding,", "for", "others", "it", "could", "be", "exploring", "South", "America", "or", "taking", "one", "of", "RoadRUNNER’s", "organized", "tours.", "The", "point", "is", "to", "try", "something", "new,", "something", "you’ve", "always", "wanted", "to", "do", "but", "haven’t", "quite", "made", "happen", "yet.", "Take", "a", "training", "course.", "This", "might", "be", "a", "track", "day,", "off-road", "school,", "advanced", "on-road", "training,", "or", "a", "number", "of", "other", "options.", "With", "any", "increase", "in", "riding", "skill", "comes", "a", "corresponding", "boost", "in", "the", "motorcycling", "fun", "factor.", "The", "more", "comfortable", "and", "confident", "you", "are", "on", "the", "bike,", "the", "greater", "your", "enjoyment", "will", "be.", "And,", "of", "course,", "you’ll", "be", "safer", "too.", "If", "you’re", "planning", "on", "attending", "RoadRUNNER’s", "Touring", "Weekend", "this", "July,", "MotoMark1", "and", "Stayin’", "Safe", "will", "be", "on", "hand", "offering", "some", "fantastic", "courses.", "Try", "out", "a", "new", "kind", "of", "riding.", "If", "you’re", "a", "touring", "rider,", "try", "a", "dual", "sport.", "If", "you’re", "a", "dual", "sport", "rider,", "try", "a", "sport", "bike.", "If", "you", "own", "a", "cruiser,", "try", "a", "standard.", "It’s", "a", "new", "year,", "time", "to", "try", "something", "different.", "Who", "knows,", "you", "just", "might", "like", "it!", "Introduce", "the", "sport", "to", "someone", "new.", "If", "you", "love", "motorcycling", "(and", "if", "you’re", "reading", "this,", "chances", "are", "you", "do)", "share", "that", "passion", "with", "someone.", "Motorcycling", "is", "a", "great", "way", "of", "connecting", "and", "bonding", "with", "friends", "and", "family,", "so", "go", "ahead,", "help", "hook", "the", "next", "generation", "of", "motorcyclists.", "Ride", "more.", "Sounds", "simple", "right?", "Just", "making", "it", "a", "point", "to", "spend", "more", "time", "in", "the", "saddle", "can", "make", "all", "the", "difference.", "Whether", "it’s", "riding", "to", "work", "more", "often,", "taking", "the", "bike", "on", "quick", "runs", "to", "the", "store,", "or", "simply", "taking", "off", "for", "a", "few", "hours", "on", "Saturday", "mornings,", "we", "could", "all", "use", "a", "few", "more", "miles", "under", "our", "belts", "in", "2014.", "Want", "to", "receive", "free", "Touring", "Tips,", "reviews,", "deals", "and", "contests,", "and", "additional", "content?", "Sign", "up", "for", "your", "free", "newsletter", "now!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Another", "year", "is", "upon", "us,", "and", "with", "it", "the", "opportunity", "to", "take", "things", "up", "a", "notch.", "You", "haven’t", "already", "broken", "any", "of", "those", "resolutions,", "have", "you?", "Plan", "at", "least", "one", "trip", "that’s", "more", "ambitious", "than", "anything", "you’ve", "previously", "tried.", "For", "some", "riders", "this", "could", "be", "finally", "taking", "the", "plunge", "into", "multi-day", "touring", "or", "dual-sport", "riding,", "for", "others", "it", "could", "be", "exploring", "South", "America", "or", "taking", "one", "of", "RoadRUNNER’s", "organized", "tours.", "The", "point", "is", "to", "try", "something", "new,", "something", "you’ve", "always", "wanted", "to", "do", "but", "haven’t", "quite", "made", "happen", "yet.", "Take", "a", "training", "course.", "This", "might", "be", "a", "track", "day,", "off-road", "school,", "advanced", "on-road", "training,", "or", "a", "number", "of", "other", "options.", "With", "any", "increase", "in", "riding", "skill", "comes", "a", "corresponding", "boost", "in", "the", "motorcycling", "fun", "factor.", "The", "more", "comfortable", "and", "confident", "you", "are", "on", "the", "bike,", "the", "greater", "your", "enjoyment", "will", "be.", "And,", "of", "course,", "you’ll", "be", "safer", "too.", "If", "you’re", "planning", "on", "attending", "RoadRUNNER’s", "Touring", "Weekend", "this", "July,", "MotoMark1", "and", "Stayin’", "Safe", "will", "be", "on", "hand", "offering", "some", "fantastic", "courses.", "Try", "out", "a", "new", "kind", "of", "riding.", "If", "you’re", "a", "touring", "rider,", "try", "a", "dual", "sport.", "If", "you’re", "a", "dual", "sport", "rider,", "try", "a", "sport", "bike.", "If", "you", "own", "a", "cruiser,", "try", "a", "standard.", "It’s", "a", "new", "year,", "time", "to", "try", "something", "different.", "Who", "knows,", "you", "just", "might", "like", "it!", "Introduce", "the", "sport", "to", "someone", "new.", "If", "you", "love", "motorcycling", "(and", "if", "you’re", "reading", "this,", "chances", "are", "you", "do)", "share", "that", "passion", "with", "someone.", "Motorcycling", "is", "a", "great", "way", "of", "connecting", "and", "bonding", "with", "friends", "and", "family,", "so", "go", "ahead,", "help", "hook", "the", "next", "generation", "of", "motorcyclists.", "Ride", "more.", "Sounds", "simple", "right?", "Just", "making", "it", "a", "point", "to", "spend", "more", "time", "in", "the", "saddle", "can", "make", "all", "the", "difference.", "Whether", "it’s", "riding", "to", "work", "more", "often,", "taking", "the", "bike", "on", "quick", "runs", "to", "the", "store,", "or", "simply", "taking", "off", "for", "a", "few", "hours", "on", "Saturday", "mornings,", "we", "could", "all", "use", "a", "few", "more", "miles", "under", "our", "belts", "in", "2014.", "Want", "to", "receive", "free", "Touring", "Tips,", "reviews,", "deals", "and", "contests,", "and", "additional", "content?", "Sign", "up", "for", "your", "free", "newsletter", "now!" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "not", "sure", "if", "everybody's", "asleep", "or", "if", "i'm", "just", "not", "funny", "151", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "not", "sure", "if", "everybody's", "asleep", "or", "if", "i'm", "just", "not", "funny", "151", "shares" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Maryam", "Ashrafi", "via", "ViewFind", "Three", "fighters", "from", "the", "YPJ", "(Women's", "Protection", "Units),", "walk", "through", "the", "flower", "fields", "in", "Western", "frontline", "near", "the", "city", "of", "Kobane", "on", "April", "7,", "2015.", "The", "city", "of", "Kobane", "is", "liberated", "though", "the", "fight", "in", "the", "frontlines", "around", "it", "is", "still", "goes", "on.", "Maryam", "Ashrafi's", "account", "originally", "appeared", "on", "ViewFind.", "Check", "out", "more", "photos", "on", "ViewFind.com.", "The", "Syrian", "Civil", "War", "has", "torn", "apart", "homes,", "families", "and", "entire", "communities.", "But", "while", "many", "families", "have", "fled", "for", "the", "relative", "safety", "of", "Europe,", "a", "group", "of", "Kurdish", "women", "have", "stayed", "behind", "in", "Northern", "Syria", "and", "taken", "up", "arms", "to", "rebuild", "and", "reclaim", "their", "lives.", "Telling", "the", "story", "of", "these", "brave", "people", "was", "more", "than", "a", "photographic", "project", "for", "me.", "I", "lived", "with", "these", "fighters", "and", "was", "able", "to", "truly", "experience", "their", "pain", "and", "sorrow,", "their", "joy", "and", "triumphs", "as", "they", "fight", "for", "their", "freedom", "alongside", "their", "male", "comrades.", "While", "Kurdish", "women", "have", "gained", "some", "equality", "in", "recent", "years,", "for", "most", "of", "these", "women", "fighting", "with", "the", "military", "forces", "is", "their", "first", "opportunity", "for", "independent", "and", "empowerment", "in", "the", "traditionally", "male-dominated", "society.", "I", "can’t", "help", "but", "feel", "angry", "at", "some", "point", "when", "I", "see", "the", "amount", "of", "suffering", "these", "women", "(and", "men)", "in", "Northern", "Syria", "endure,", "and", "the", "little", "help", "they", "receive", "from", "the", "outside", "world.", "This", "was", "especially", "true", "while", "I", "was", "in", "Kobane,", "where", "the", "Turkish", "border", "was", "closed", "to", "any", "national", "and", "international", "help.", "Maryam", "Ashrafi", "via", "ViewFind", "On", "April", "14,", "2015,", "a", "group", "of", "YPJ", "and", "YPG", "(People's", "Protection", "Unit)", "fighters", "carry", "the", "coffins", "of", "Kurdish", "fighters", "who", "were", "killed", "during", "clashes", "with", "the", "Islamic", "State", "in", "eastern", "frontline", "of", "Kobane,", "Syria.", "The", "fighters", "liberated", "the", "city", "of", "Kobane", "and", "have", "reclaimed", "160", "villages.", "Every", "two", "days", "during", "my", "stay,", "there", "was", "a", "funeral", "of", "some", "fighters", "on", "the", "frontlines", "who", "are", "still", "defending", "the", "city.", "But", "before", "and", "after", "the", "victories,", "there’s", "a", "constant", "threat", "of", "death", "or", "serious", "injury", "during", "firefights", "and", "patrols.", "The", "fighters", "must", "move", "constantly,", "setting", "up", "makeshift", "camps", "in", "old", "structures,", "like", "this", "old", "school", "in", "Baghdak.", "The", "school", "closed", "when", "the", "city", "was", "seized", "by", "by", "the", "Islamic", "State.", "I", "hope", "people", "are", "able", "to", "put", "themselves", "in", "the", "place", "of", "the", "women", "in", "these", "photos.", "That’s", "why", "I", "tired", "to", "focus", "more", "on", "the", "daily", "life", "and", "quiet", "moments", "of", "their", "lives.", "And", "there", "were", "some", "moments", "of", "joy,", "too.", "Maryam", "Ashrafi", "via", "ViewFind", "Sarah,", "a", "member", "of", "YPJ,", "spends", "some", "time", "with", "a", "little", "girl", "of", "a", "family", "she", "is", "visiting", "on", "her", "way", "from", "one", "village", "to", "another", "in", "Western", "frontline", "near", "the", "city", "of", "Kobane", "on", "April", "9,", "2015.", "The", "city", "of", "Kobane", "is", "liberated", "though", "the", "fight", "in", "the", "frontlines", "around", "it", "is", "still", "goes", "on.", "My", "main", "motivation", "to", "follow", "the", "story", "of", "the", "fighters", "--", "beside", "my", "personal", "interest", "to", "learn", "more", "about", "them", "--", "was", "the", "ignorance", "of", "the", "mainstream", "media", "over", "this", "important", "story.", "Yet", "after", "the", "liberation", "of", "Kobane,", "they've", "received", "more", "attention", "and", "people", "have", "begun", "to", "look", "and", "listen.", "Too", "many", "pictures", "of", "people", "fighting", "would", "create", "an", "\"us\"", "and", "\"them\"", "dynamic", "in", "our", "mind.", "Portraits", "of", "normal", "life,", "or", "the", "moments", "of", "emotion,", "gives", "us", "moments", "we", "can", "feel,", "perhaps", "opening", "the", "doors", "of", "understanding.", "I", "can", "only", "hope", "you", "will", "remember", "the", "faces", "and", "surroundings,", "and", "understand", "the", "plight", "of", "these", "brave", "people.", "At", "the", "beginning", "of", "my", "project", "back", "in", "2012,", "I", "lived", "with", "the", "Kurdish", "fighters", "of", "Iran", "who", "live", "in", "their", "military", "camps", "in", "Iraqi", "Kurdistan.", "My", "later", "travel", "to", "the", "Qandil", "mountains", "and", "in", "2015,", "my", "stay", "with", "the", "people", "of", "Kobane", "all", "were", "great", "moments", "that", "helped", "me", "to", "understand", "the", "motivations", "of", "their", "fight.", "The", "Turkish", "government", "is", "also", "threatened", "by", "the", "independence", "of", "the", "Kurdish", "people", "and", "sometimes", "attacks", "them.", "The", "fighters", "face", "threats", "from", "both", "sides", "of", "their", "border,", "the", "Islamic", "State", "and", "Turkey.", "They", "are", "alone", "and", "vulnerable.", "I", "still", "wonder", "whether", "the", "people", "in", "power", "will", "do", "anything", "to", "defeat", "the", "Islamic", "State.", "Turkey,", "N.A.T.O.", "are", "not", "helping,", "leaving", "the", "Kurdish", "fighters", "alone", "to", "fight.", "Check", "out", "more", "photos", "on", "ViewFind.com." ] ]
[ [ "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt" ] ]
[ [ [ "Maryam", "Ashrafi", "via", "ViewFind", "Three", "fighters", "from", "the", "YPJ", "(Women's", "Protection", "Units),", "walk", "through", "the", "flower", "fields", "in", "Western", "frontline", "near", "the", "city", "of", "Kobane", "on", "April", "7,", "2015.", "The", "city", "of", "Kobane", "is", "liberated", "though", "the", "fight", "in", "the", "frontlines", "around", "it", "is", "still", "goes", "on.", "Maryam", "Ashrafi's", "account", "originally", "appeared", "on", "ViewFind.", "Check", "out", "more", "photos", "on", "ViewFind.com.", "The", "Syrian", "Civil", "War", "has", "torn", "apart", "homes,", "families", "and", "entire", "communities.", "But", "while", "many", "families", "have", "fled", "for", "the", "relative", "safety", "of", "Europe,", "a", "group", "of", "Kurdish", "women", "have", "stayed", "behind", "in", "Northern", "Syria", "and", "taken", "up", "arms", "to", "rebuild", "and", "reclaim", "their", "lives.", "Telling", "the", "story", "of", "these", "brave", "people", "was", "more", "than", "a", "photographic", "project", "for", "me.", "I", "lived", "with", "these", "fighters", "and", "was", "able", "to", "truly", "experience", "their", "pain", "and", "sorrow,", "their", "joy", "and", "triumphs", "as", "they", "fight", "for", "their", "freedom", "alongside", "their", "male", "comrades.", "While", "Kurdish", "women", "have", "gained", "some", "equality", "in", "recent", "years,", "for", "most", "of", "these", "women", "fighting", "with", "the", "military", "forces", "is", "their", "first", "opportunity", "for", "independent", "and", "empowerment", "in", "the", "traditionally", "male-dominated", "society.", "I", "can’t", "help", "but", "feel", "angry", "at", "some", "point", "when", "I", "see", "the", "amount", "of", "suffering", "these", "women", "(and", "men)", "in", "Northern", "Syria", "endure,", "and", "the", "little", "help", "they", "receive", "from", "the", "outside", "world.", "This", "was", "especially", "true", "while", "I", "was", "in", "Kobane,", "where", "the", "Turkish", "border", "was", "closed", "to", "any", "national", "and", "international", "help.", "Maryam", "Ashrafi", "via", "ViewFind", "On", "April", "14,", "2015,", "a", "group", "of", "YPJ", "and", "YPG", "(People's", "Protection", "Unit)", "fighters", "carry", "the", "coffins", "of", "Kurdish", "fighters", "who", "were", "killed", "during", "clashes", "with", "the", "Islamic", "State", "in", "eastern", "frontline", "of", "Kobane,", "Syria.", "The", "fighters", "liberated", "the", "city", "of", "Kobane", "and", "have", "reclaimed", "160", "villages.", "Every", "two", "days", "during", "my", "stay,", "there", "was", "a", "funeral", "of", "some", "fighters", "on", "the", "frontlines", "who", "are", "still", "defending", "the", "city.", "But", "before", "and", "after", "the", "victories,", "there’s", "a", "constant", "threat", "of", "death", "or", "serious", "injury", "during", "firefights", "and", "patrols.", "The", "fighters", "must", "move", "constantly,", "setting", "up", "makeshift", "camps", "in", "old", "structures,", "like", "this", "old", "school", "in", "Baghdak.", "The", "school", "closed", "when", "the", "city", "was", "seized", "by", "by", "the", "Islamic", "State.", "I", "hope", "people", "are", "able", "to", "put", "themselves", "in", "the", "place", "of", "the", "women", "in", "these", "photos.", "That’s", "why", "I", "tired", "to", "focus", "more", "on", "the", "daily", "life", "and", "quiet", "moments", "of", "their", "lives.", "And", "there", "were", "some", "moments", "of", "joy,", "too.", "Maryam", "Ashrafi", "via", "ViewFind", "Sarah,", "a", "member", "of", "YPJ,", "spends", "some", "time", "with", "a", "little", "girl", "of", "a", "family", "she", "is", "visiting", "on", "her", "way", "from", "one", "village", "to", "another", "in", "Western", "frontline", "near", "the", "city", "of", "Kobane", "on", "April", "9,", "2015.", "The", "city", "of", "Kobane", "is", "liberated", "though", "the", "fight", "in", "the", "frontlines", "around", "it", "is", "still", "goes", "on.", "My", "main", "motivation", "to", "follow", "the", "story", "of", "the", "fighters", "--", "beside", "my", "personal", "interest", "to", "learn", "more", "about", "them", "--", "was", "the", "ignorance", "of", "the", "mainstream", "media", "over", "this", "important", "story.", "Yet", "after", "the", "liberation", "of", "Kobane,", "they've", "received", "more", "attention", "and", "people", "have", "begun", "to", "look", "and", "listen.", "Too", "many", "pictures", "of", "people", "fighting", "would", "create", "an", "\"us\"", "and", "\"them\"", "dynamic", "in", "our", "mind.", "Portraits", "of", "normal", "life,", "or", "the", "moments", "of", "emotion,", "gives", "us", "moments", "we", "can", "feel,", "perhaps", "opening", "the", "doors", "of", "understanding.", "I", "can", "only", "hope", "you", "will", "remember", "the", "faces", "and", "surroundings,", "and", "understand", "the", "plight", "of", "these", "brave", "people.", "At", "the", "beginning", "of", "my", "project", "back", "in", "2012,", "I", "lived", "with", "the", "Kurdish", "fighters", "of", "Iran", "who", "live", "in", "their", "military", "camps", "in", "Iraqi", "Kurdistan.", "My", "later", "travel", "to", "the", "Qandil", "mountains", "and", "in", "2015,", "my", "stay", "with", "the", "people", "of", "Kobane", "all", "were", "great", "moments", "that", "helped", "me", "to", "understand", "the", "motivations", "of", "their", "fight.", "The", "Turkish", "government", "is", "also", "threatened", "by", "the", "independence", "of", "the", "Kurdish", "people", "and", "sometimes", "attacks", "them.", "The", "fighters", "face", "threats", "from", "both", "sides", "of", "their", "border,", "the", "Islamic", "State", "and", "Turkey.", "They", "are", "alone", "and", "vulnerable.", "I", "still", "wonder", "whether", "the", "people", "in", "power", "will", "do", "anything", "to", "defeat", "the", "Islamic", "State.", "Turkey,", "N.A.T.O.", "are", "not", "helping,", "leaving", "the", "Kurdish", "fighters", "alone", "to", "fight.", "Check", "out", "more", "photos", "on", "ViewFind.com." ] ] ]
[ [ "pt" ] ]
[ "mono" ]
[ [ "Traders", "have", "reportedly", "incurred", "losses", "after", "Hong", "Kong-based", "cryptocurrency", "exchange", "OKEx", "settled", "bitcoin", "cash", "futures", "contracts", "almost", "without", "warning", "ahead", "of", "last", "week’s", "hard", "fork.", "According", "to", "a", "Bloomberg", "report", "Monday,", "the", "decision", "by", "OKEx", "resulted", "in", "significant", "losses", "for", "some", "investors,", "including", "Qiao", "Changhe,", "founder", "of", "a", "firm", "called", "Consensus", "Technologies,", "who", "said", "his", "fund", "was", "down", "$700,000", "because", "the", "exchange", "closed", "the", "contracts", "at", "a", "level", "that", "did", "not", "reflect", "market", "prices", "at", "the", "time.", "As", "a", "result,", "he", "suggested", "he", "is", "likely", "to", "reduce", "the", "$5", "million", "fund’s", "utilization", "of", "the", "exchange.", "“OKEx", "is", "losing", "its", "credibility.", "The", "futures", "contract", "became", "something", "nonsense,", "not", "something", "we", "could", "use", "to", "hedge,”", "Changhe", "was", "quoted", "as", "saying.", "Four", "other", "unnamed", "traders", "also", "reportedly", "said", "that", "they", "would", "reduce", "their", "exposure", "to", "OKEx", "or", "even", "stop", "dealing", "with", "the", "exchange", "entirely.", "One", "of", "the", "four", "has", "complained", "to", "the", "country’s", "financial", "watchdog,", "the", "Securities", "and", "Futures", "Commission,", "Bloomberg", "says.", "On", "Nov.", "14,", "the", "day", "before", "the", "hard", "fork", "of", "the", "bitcoin", "cash", "blockchain,", "OKEx", "posted", "an", "announcement", "on", "its", "blog,", "giving", "short", "notice", "that", "all", "BCH", "futures", "would", "stop", "trading", "“at", "9:05am", "and", "be", "delivered", "at", "10:00am", "Nov", "14,", "2018", "CET", "(UTC", "+1)", "due", "to", "the", "upcoming", "hard", "fork.", "We", "will", "provide", "a", "detailed", "explanation", "shortly.”", "In", "an", "announcement", "later", "the", "same", "day,", "it", "said", "it", "had", "opted", "to", "use", "the", "last", "traded", "prices", "as", "the", "delivery", "prices", "since", "there", "was", "no", "trading", "pair", "with", "bitcoin", "cash", "with", "“enough", "market", "depth", "and", "trading", "volume", "to", "compose", "an", "index", "for", "delivery.”", "Calling", "the", "pre-fork", "situation", "an", "“extremely", "special", "case,”", "OKEx", "continued:", "“It", "has", "come", "to", "our", "concern", "that", "an", "early", "announcement", "may", "make", "room", "for", "market", "manipulation", "and", "cause", "loss", "to", "our", "users.", "Therefore,", "we", "decided", "to", "give", "a", "short", "notice", "in", "order", "to", "maintain", "the", "fairness", "and", "stability", "of", "the", "market.”", "It", "also", "explained", "why", "it", "had", "chosen", "a", "delivery", "time", "one", "hour", "after", "the", "halt", "of", "trading,", "saying", "that", "to", "have", "both", "at", "the", "same", "time", "could", "have", "caused", "a", "flood", "of", "ask", "orders", "that", "“could", "have", "crushed", "the", "BCH", "spot", "market", "and", "caused", "huge", "volatility.”", "This", "is", "not", "the", "first", "time", "OKEx", "has", "made", "such", "a", "decision.", "Back", "in", "August,", "OKEx", "froze", "one", "of", "its", "users’", "account", "and", "initiated", "a", "forced", "liquidation", "after", "the", "client", "made", "an", "“enormous”", "long", "position", "of", "4,168,515", "bitcoin", "futures", "contracts", "and", "declined", "the", "exchange’s", "request", "to", "lower", "the", "position.", "OKEx", "app", "image", "via", "Shutterstock" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Traders", "have", "reportedly", "incurred", "losses", "after", "Hong", "Kong-based", "cryptocurrency", "exchange", "OKEx", "settled", "bitcoin", "cash", "futures", "contracts", "almost", "without", "warning", "ahead", "of", "last", "week’s", "hard", "fork.", "According", "to", "a", "Bloomberg", "report", "Monday,", "the", "decision", "by", "OKEx", "resulted", "in", "significant", "losses", "for", "some", "investors,", "including", "Qiao", "Changhe,", "founder", "of", "a", "firm", "called", "Consensus", "Technologies,", "who", "said", "his", "fund", "was", "down", "$700,000", "because", "the", "exchange", "closed", "the", "contracts", "at", "a", "level", "that", "did", "not", "reflect", "market", "prices", "at", "the", "time.", "As", "a", "result,", "he", "suggested", "he", "is", "likely", "to", "reduce", "the", "$5", "million", "fund’s", "utilization", "of", "the", "exchange.", "“OKEx", "is", "losing", "its", "credibility.", "The", "futures", "contract", "became", "something", "nonsense,", "not", "something", "we", "could", "use", "to", "hedge,”", "Changhe", "was", "quoted", "as", "saying.", "Four", "other", "unnamed", "traders", "also", "reportedly", "said", "that", "they", "would", "reduce", "their", "exposure", "to", "OKEx", "or", "even", "stop", "dealing", "with", "the", "exchange", "entirely.", "One", "of", "the", "four", "has", "complained", "to", "the", "country’s", "financial", "watchdog,", "the", "Securities", "and", "Futures", "Commission,", "Bloomberg", "says.", "On", "Nov.", "14,", "the", "day", "before", "the", "hard", "fork", "of", "the", "bitcoin", "cash", "blockchain,", "OKEx", "posted", "an", "announcement", "on", "its", "blog,", "giving", "short", "notice", "that", "all", "BCH", "futures", "would", "stop", "trading", "“at", "9:05am", "and", "be", "delivered", "at", "10:00am", "Nov", "14,", "2018", "CET", "(UTC", "+1)", "due", "to", "the", "upcoming", "hard", "fork.", "We", "will", "provide", "a", "detailed", "explanation", "shortly.”", "In", "an", "announcement", "later", "the", "same", "day,", "it", "said", "it", "had", "opted", "to", "use", "the", "last", "traded", "prices", "as", "the", "delivery", "prices", "since", "there", "was", "no", "trading", "pair", "with", "bitcoin", "cash", "with", "“enough", "market", "depth", "and", "trading", "volume", "to", "compose", "an", "index", "for", "delivery.”", "Calling", "the", "pre-fork", "situation", "an", "“extremely", "special", "case,”", "OKEx", "continued:", "“It", "has", "come", "to", "our", "concern", "that", "an", "early", "announcement", "may", "make", "room", "for", "market", "manipulation", "and", "cause", "loss", "to", "our", "users.", "Therefore,", "we", "decided", "to", "give", "a", "short", "notice", "in", "order", "to", "maintain", "the", "fairness", "and", "stability", "of", "the", "market.”", "It", "also", "explained", "why", "it", "had", "chosen", "a", "delivery", "time", "one", "hour", "after", "the", "halt", "of", "trading,", "saying", "that", "to", "have", "both", "at", "the", "same", "time", "could", "have", "caused", "a", "flood", "of", "ask", "orders", "that", "“could", "have", "crushed", "the", "BCH", "spot", "market", "and", "caused", "huge", "volatility.”", "This", "is", "not", "the", "first", "time", "OKEx", "has", "made", "such", "a", "decision.", "Back", "in", "August,", "OKEx", "froze", "one", "of", "its", "users’", "account", "and", "initiated", "a", "forced", "liquidation", "after", "the", "client", "made", "an", "“enormous”", "long", "position", "of", "4,168,515", "bitcoin", "futures", "contracts", "and", "declined", "the", "exchange’s", "request", "to", "lower", "the", "position.", "OKEx", "app", "image", "via", "Shutterstock" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "So,", "for", "my", "Memorial", "Day", "game,", "I", "decided", "to", "go", "back", "to", "the", "very", "first", "one", "I", "did:", "Winter.", "This", "time,", "with", "all", "the", "tools", "I", "had", "learned", "over", "these", "past", "5", "years,", "as", "well", "as", "the", "devices", "I", "was", "given.", "Now,", "instead", "of", "choosing", "from", "one", "of", "three", "lines,", "I’m", "going", "to", "make", "up", "a", "new", "line", "using", "the", "BOLD.", "Waylay", "Problem", ":", "8", "&", "9,", "otherworldly.", ":", "8", "&", "9,", "otherworldly.", "Waylay", "Modifier:", "21,", "harsh.", "21,", "harsh.", "Waylay", "Solution:", "5,", "Enemy", "Help.", "Hmmm…", "This", "might", "be", "interesting…", "Alright,", "let’s", "do", "a", "five-minute", "freewrite.", "It’s", "been", "five", "days", "since", "the", "enemy", "from", "the", "other", "world", "came", "to", "our", "doorstep.", "The", "Germans", "had", "allied", "with", "us", "to", "eliminate", "this", "threat,", "but", "unfortunately,", "their", "instant", "death", "guns", "have", "us", "hiding", "in", "our", "trenches.", "It’s", "truly", "a", "no", "man’s", "land,", "since", "no", "man", "is", "able", "to", "step", "foot", "on", "it.", "Food’s", "scarce", "because", "of", "it,", "and", "tensions", "are", "high.", "This", "isn’t", "like", "Christmas.", "Our", "enemies", "are", "still", "our", "enemies", "and", "we", "ain’t", "playing", "football", "anytime", "soon.", "Any", "hint", "of", "camaraderie", "is", "only", "temporary", "and", "some", "of", "us", "are", "wondering", "if", "we’d", "be", "knifed", "in", "our", "sleep.", "Commander", "told", "us", "reinforcements", "will", "be", "coming", "shortly,", "but", "doesn’t", "know", "how", "long.", "We’re", "on", "a", "knife’s", "edge", "and", "I", "fear", "we’ll", "either", "be", "conquered", "by", "the", "Germans", "or", "the", "Otherworlders…", "We", "don’t", "even", "know", "who", "they", "are.", "Some", "think", "they’re", "aliens,", "others", "think", "they’re", "faeries.", "Personally,", "I", "just", "wanna", "go", "home", "and", "get", "away", "from", "these", "monsters.", "Both", "human", "monsters", "and", "the", "strange", "monsters", "I", "see", "before", "me.", "Okay,", "so", "I", "think", "I", "can", "see", "why", "I’m", "only", "restricted", "to", "three", "lines,", "as", "I", "managed", "to", "turn", "what", "seems", "to", "be", "a", "WWI", "style", "game", "into", "War", "of", "the", "Worlds…", "Wonder", "if", "they", "can", "get", "killed", "by", "the", "Spanish", "Influenza.", "Wait,", "why", "wonder", "when", "I", "can", "ask!", "Hey,", "CRGE!", "Can", "these", "aliens", "be", "killed", "by", "the", "Spanish", "Influenza?", "[Purpose:", "To", "Knowledge.", "A:", "53,", "surge", "goes", "up", "to", "1]", "[Q:", "Do", "the", "soldiers", "know?", "Purpose:", "To", "Knowledge.", "A:", "67,", "Surge", "makes", "it", "69,", "SC", "goes", "up", "to", "2]", "…", "Alright.", "Welp,", "I", "think", "I", "know", "what", "to", "do.", "First,", "a", "camaraderie", "scene,", "as", "per", "the", "rules", "of", "the", "game,", "generated", "by", "the", "Adventure", "Crafter.", "[Roll:", "87.", "CORRUPTION:", "This", "Turning", "Point", "involves", "corruption", "of", "asocial", "apparatus", "of", "some", "kind.]", "Oh", "snap.", "Health:", "10", "Hope:", "10", "[", "]", "[", "]", "[", "]", "Day", "One,", "Morning", "Our", "provisions", "were", "given", "to", "us", "by", "the", "Germans.", "We", "had", "no", "idea", "how", "to", "pay", "them", "back,", "nor", "if", "we", "would", "even", "want", "to.", "Every", "day,", "I", "feel", "like", "we", "owe", "our", "lives", "to", "them.", "That,", "once", "the", "alien", "threat", "is", "taken", "care", "of,", "it", "will", "be", "a", "lot", "harder", "for", "all", "of", "us", "to", "get", "back", "on", "fighting", "terms.", "Perhaps", "that’s", "what", "they", "want.", "For", "us", "to", "get", "used", "to", "them", "helping", "us…", "and", "then", "kill", "us", "once", "the", "dust", "settles.", "Every", "time", "I", "see", "one", "of", "them", "smile", "at", "me,", "I", "feel", "like", "they’re", "planning", "my", "death.", "I", "honestly", "have", "no", "idea", "how", "to", "repay", "their", "kindness.", "The", "only", "thing", "I", "can", "do", "is", "stare", "at", "them", "and", "hope", "they", "mean", "well", "when", "they", "give", "us", "food.", "Alright,", "so", "we", "got", "some", "sort", "of", "implication", "that", "the", "Germans", "might", "be", "buttering", "us", "up,", "but", "now,", "we", "can", "bring", "the", "disease", "to", "the", "enemy’s", "door", "step", "and", "get", "them", "sick!", "Health:", "10", "Hope:", "10", "[", "]", "[", "]", "[", "]", "Day", "One,", "Afternoon", "We", "knew", "the", "weakness", "of", "these", "new", "threats", "for", "a", "while", "now.", "We", "just", "needed", "to", "get", "the", "right", "moment", "to", "strike.", "Thankfully,", "all", "it", "took", "was", "a", "farmer’s", "messy", "pig", "and", "someone", "to", "bring", "it", "over", "to", "the", "aliens.", "I", "volunteered", "to", "deliver", "it", "right", "to", "their", "door", "step.", "Everyone", "wished", "me", "luck,", "since", "there’d", "be", "a", "small", "chance", "of", "me", "surviving.", "My", "only", "concern", "in", "all", "this", "was", "what’d", "happen", "once", "the", "aliens", "are", "dead…", "That", "would", "be", "a", "plan", "I’d", "formulate…", "should", "I", "live.", "[Volunteer", "Roll:", "6]", "The", "result", "is", "cold,", "so", "cold.", "So", "that", "begs", "the", "question…", "[Q:", "Did", "he", "succeed", "in", "his", "mission?", "Purpose:", "To", "Endings.", "A:", "22,", "Surge", "bringing", "it", "down", "to", "18]", "No,", "and…", "Health:", "7", "Hope:", "10", "[", "]", "[", "]", "[", "]", "Day", "One,", "Night", "It", "was", "a", "trap" ], [ ".", "The", "Germans", "had", "me", "cornered,", "having", "faked", "the", "alien", "invasion", "to", "lull", "us", "into", "a", "false", "sense", "of", "security.", "I", "hadn’t", "expected", "that,", "so", "when", "they", "surprised", "me,", "I", "couldn’t", "fight", "back", "before", "I", "met", "a", "dozen", "bullets.", "I’m", "wounded", "and", "it", "was", "only", "a", "matter", "of", "time", "before", "my", "group", "suffers", "the", "same", "fate.", "Random", "Event:", "65,", "PC", "Negative", "65,", "PC", "Negative", "Event", "Meaning:", "82", "&", "87,", "Activity", "Magic", "Unfortunately,", "I", "wasn’t", "able", "to", "reach", "back", "in", "time…", "A", "thunderstorm", "broke", "out,", "the", "rain", "picked", "up", "so", "heavily", "that", "I", "couldn’t", "even", "see", "where", "I", "was", "going.", "Lightning", "strikes", "were", "everywhere", "and", "I", "tried", "hard", "to", "avoid", "them,", "but", "they", "were", "so", "unpredictable.", "I", "struggled,", "but", "with", "each", "move,", "the", "bullets", "wriggled", "deeper", "into", "my", "body.", "My", "only", "hope", "now", "is", "for", "the", "lightning", "to", "strike", "them", "and", "save", "my", "troops.", "[Q:", "Does", "lighting", "strike", "them?", "Purpose:", "To", "Endings.", "A:", "70,", "SC", "going", "to", "1]", "I", "heard", "a", "crash", "followed", "swiftly", "by", "German", "screams.", "In", "my", "minds", "eye,", "I", "saw", "the", "plane", "they", "used", "for", "their", "hoax", "crash", "down", "and", "explode.", "With", "their", "dying", "curses,", "I", "rested", "easily,", "knowing", "that", "there", "was", "such", "a", "thing", "as", "karma.", "Perhaps", "there", "was", "something", "otherworldly…", "Maybe", "I’ll", "ask", "God", "once", "I", "meet", "him.", "And", "scene.", "So…", "Yeah.", "Pretty", "quick", "and", "it", "led", "me", "to", "think", "of", "just", "why", "the", "three", "starting", "sentences", "were", "necessary.", "Anything", "else", "would", "have", "drastically", "changed", "the", "narrative", "like", "what", "happened", "here.", "Hell,", "I", "was", "able", "to", "get", "this", "done", "in", "under", "1,000", "words", "because", "I", "decided", "to", "pull", "a", "War", "of", "the", "Worlds", "ending", "and", "the", "CRGE", "decided", "“eh,", "that", "works”.", "The", "best", "thing", "I", "could", "say", "for", "this", "new", "way", "of", "generating", "scenarios", "for", "Winter", "is", "that", "it", "shakes", "up", "the", "formula", "quite", "a", "bit.", "Like,", "a", "pseudo-sci-fi", "story", "where", "the", "Germans", "faked", "an", "alien", "invasion", "to", "get", "close", "to", "the", "enemy", "and", "strike", "them", "is", "interesting.", "Looking", "back", "at", "Winter,", "it", "still", "holds", "a", "place", "in", "my", "heart", "for", "being", "a", "rather", "great", "starting", "game,", "especially", "for", "those", "who", "are", "just", "beginning", "to", "Solo", "and", "the", "idea", "of", "a", "System", "+", "Engine", "+", "Drivers", "is", "intimidating.", "That", "said,", "it", "feels", "a", "little", "limited", "in", "what", "you", "could", "do,", "there’s", "no", "real", "indication", "of", "which", "scene", "to", "do", "—", "save", "for", "the", "beginning", "(which", "is", "always", "a", "Camaraderie", "scene)", "and", "when", "you", "volunteer", "(which", "is", "followed", "by", "a", "Violence", "scene)", "—", "unless", "you", "decide", "to", "randomly", "roll", "for", "it,", "and", "the", "Volunteering", "doesn’t", "exactly", "have", "any", "benefits", "that", "encourages", "the", "risk", "and", "seems", "to", "only", "exist", "when", "you", "want", "to", "hit", "the", "endgame", "early.", "That", "said,", "I", "still", "like", "Winter", "for", "its", "simplicity", "and", "fluff", "over", "crunch", "and", "it", "definitely", "gives", "you", "a", "sort", "of", "skeleton", "of", "what", "to", "write", "for", "an", "actual", "play.", "I", "recommend", "it", "for", "anyone", "who", "wants", "to", "spend", "their", "Rememberance", "Day", "playing", "a", "simple", "little", "war", "game.", "Bon", "Voyage,", "gamers." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en" ] ]
[ [ [ "So,", "for", "my", "Memorial", "Day", "game,", "I", "decided", "to", "go", "back", "to", "the", "very", "first", "one", "I", "did:", "Winter.", "This", "time,", "with", "all", "the", "tools", "I", "had", "learned", "over", "these", "past", "5", "years,", "as", "well", "as", "the", "devices", "I", "was", "given.", "Now,", "instead", "of", "choosing", "from", "one", "of", "three", "lines,", "I’m", "going", "to", "make", "up", "a", "new", "line", "using", "the", "BOLD.", "Waylay", "Problem", ":", "8", "&", "9,", "otherworldly.", ":", "8", "&", "9,", "otherworldly.", "Waylay", "Modifier:", "21,", "harsh.", "21,", "harsh.", "Waylay", "Solution:", "5,", "Enemy", "Help.", "Hmmm…", "This", "might", "be", "interesting…", "Alright,", "let’s", "do", "a", "five-minute", "freewrite.", "It’s", "been", "five", "days", "since", "the", "enemy", "from", "the", "other", "world", "came", "to", "our", "doorstep.", "The", "Germans", "had", "allied", "with", "us", "to", "eliminate", "this", "threat,", "but", "unfortunately,", "their", "instant", "death", "guns", "have", "us", "hiding", "in", "our", "trenches.", "It’s", "truly", "a", "no", "man’s", "land,", "since", "no", "man", "is", "able", "to", "step", "foot", "on", "it.", "Food’s", "scarce", "because", "of", "it,", "and", "tensions", "are", "high.", "This", "isn’t", "like", "Christmas.", "Our", "enemies", "are", "still", "our", "enemies", "and", "we", "ain’t", "playing", "football", "anytime", "soon.", "Any", "hint", "of", "camaraderie", "is", "only", "temporary", "and", "some", "of", "us", "are", "wondering", "if", "we’d", "be", "knifed", "in", "our", "sleep.", "Commander", "told", "us", "reinforcements", "will", "be", "coming", "shortly,", "but", "doesn’t", "know", "how", "long.", "We’re", "on", "a", "knife’s", "edge", "and", "I", "fear", "we’ll", "either", "be", "conquered", "by", "the", "Germans", "or", "the", "Otherworlders…", "We", "don’t", "even", "know", "who", "they", "are.", "Some", "think", "they’re", "aliens,", "others", "think", "they’re", "faeries.", "Personally,", "I", "just", "wanna", "go", "home", "and", "get", "away", "from", "these", "monsters.", "Both", "human", "monsters", "and", "the", "strange", "monsters", "I", "see", "before", "me.", "Okay,", "so", "I", "think", "I", "can", "see", "why", "I’m", "only", "restricted", "to", "three", "lines,", "as", "I", "managed", "to", "turn", "what", "seems", "to", "be", "a", "WWI", "style", "game", "into", "War", "of", "the", "Worlds…", "Wonder", "if", "they", "can", "get", "killed", "by", "the", "Spanish", "Influenza.", "Wait,", "why", "wonder", "when", "I", "can", "ask!", "Hey,", "CRGE!", "Can", "these", "aliens", "be", "killed", "by", "the", "Spanish", "Influenza?", "[Purpose:", "To", "Knowledge.", "A:", "53,", "surge", "goes", "up", "to", "1]", "[Q:", "Do", "the", "soldiers", "know?", "Purpose:", "To", "Knowledge.", "A:", "67,", "Surge", "makes", "it", "69,", "SC", "goes", "up", "to", "2]", "…", "Alright.", "Welp,", "I", "think", "I", "know", "what", "to", "do.", "First,", "a", "camaraderie", "scene,", "as", "per", "the", "rules", "of", "the", "game,", "generated", "by", "the", "Adventure", "Crafter.", "[Roll:", "87.", "CORRUPTION:", "This", "Turning", "Point", "involves", "corruption", "of", "asocial", "apparatus", "of", "some", "kind.]", "Oh", "snap.", "Health:", "10", "Hope:" ], [ "[", "]", "[", "]", "Day", "One,", "Morning", "Our", "provisions", "were", "given", "to", "us", "by", "the", "Germans.", "We", "had", "no", "idea", "how", "to", "pay", "them", "back,", "nor", "if", "we", "would", "even", "want", "to.", "Every", "day,", "I", "feel", "like", "we", "owe", "our", "lives", "to", "them.", "That,", "once", "the", "alien", "threat", "is", "taken", "care", "of,", "it", "will", "be", "a", "lot", "harder", "for", "all", "of", "us", "to", "get", "back", "on", "fighting", "terms.", "Perhaps", "that’s", "what", "they", "want.", "For", "us", "to", "get", "used", "to", "them", "helping", "us…", "and", "then", "kill", "us", "once", "the", "dust", "settles.", "Every", "time", "I", "see", "one", "of", "them", "smile", "at", "me,", "I", "feel", "like", "they’re", "planning", "my", "death.", "I", "honestly", "have", "no", "idea", "how", "to", "repay", "their", "kindness.", "The", "only", "thing", "I", "can", "do", "is", "stare", "at", "them", "and", "hope", "they", "mean", "well", "when", "they", "give", "us", "food.", "Alright,", "so", "we", "got", "some", "sort", "of", "implication", "that", "the", "Germans", "might", "be", "buttering", "us", "up,", "but", "now,", "we", "can", "bring", "the", "disease", "to", "the", "enemy’s", "door", "step", "and", "get", "them", "sick!", "Health:", "10", "Hope:", "10" ], [ "[", "]", "[", "]", "Day", "One,", "Afternoon", "We", "knew", "the", "weakness", "of", "these", "new", "threats", "for", "a", "while", "now.", "We", "just", "needed", "to", "get", "the", "right", "moment", "to", "strike.", "Thankfully,", "all", "it", "took", "was", "a", "farmer’s", "messy", "pig", "and", "someone", "to", "bring", "it", "over", "to", "the", "aliens.", "I", "volunteered", "to", "deliver", "it", "right", "to", "their", "door", "step.", "Everyone", "wished", "me", "luck,", "since", "there’d", "be", "a", "small", "chance", "of", "me", "surviving.", "My", "only", "concern", "in", "all", "this", "was", "what’d", "happen", "once", "the", "aliens", "are", "dead…", "That", "would", "be", "a", "plan", "I’d", "formulate…", "should", "I", "live.", "[Volunteer", "Roll:", "6]", "The", "result", "is", "cold,", "so", "cold.", "So", "that", "begs", "the", "question…", "[Q:", "Did", "he", "succeed", "in", "his", "mission?", "Purpose:", "To", "Endings.", "A:", "22,", "Surge", "bringing", "it", "down", "to", "18]", "No,", "and…", "Health:", "7", "Hope:", "10", "[", "]", "[", "]", "[", "]", "Day", "One,", "Night", "It", "was", "a", "trap" ] ], [ [ ".", "The", "Germans", "had", "me", "cornered,", "having", "faked", "the", "alien", "invasion", "to", "lull", "us", "into", "a", "false", "sense", "of", "security.", "I", "hadn’t", "expected", "that,", "so", "when", "they", "surprised", "me,", "I", "couldn’t", "fight", "back", "before", "I", "met", "a", "dozen", "bullets.", "I’m", "wounded", "and", "it", "was", "only", "a", "matter", "of", "time", "before", "my", "group", "suffers", "the", "same", "fate.", "Random", "Event:", "65,", "PC", "Negative", "65,", "PC", "Negative", "Event", "Meaning:", "82", "&", "87,", "Activity", "Magic", "Unfortunately,", "I", "wasn’t", "able", "to", "reach", "back", "in", "time…", "A", "thunderstorm", "broke", "out,", "the", "rain", "picked", "up", "so", "heavily", "that", "I", "couldn’t", "even", "see", "where", "I", "was", "going.", "Lightning", "strikes", "were", "everywhere", "and", "I", "tried", "hard", "to", "avoid", "them,", "but", "they", "were", "so", "unpredictable.", "I", "struggled,", "but", "with", "each", "move,", "the", "bullets", "wriggled", "deeper", "into", "my", "body.", "My", "only", "hope", "now", "is", "for", "the", "lightning", "to", "strike", "them", "and", "save", "my", "troops.", "[Q:", "Does", "lighting", "strike", "them?", "Purpose:", "To", "Endings.", "A:", "70,", "SC", "going", "to", "1]", "I", "heard", "a", "crash", "followed", "swiftly", "by", "German", "screams.", "In", "my", "minds", "eye,", "I", "saw", "the", "plane", "they", "used", "for", "their", "hoax", "crash", "down", "and", "explode.", "With", "their", "dying", "curses,", "I", "rested", "easily,", "knowing", "that", "there", "was", "such", "a", "thing", "as", "karma.", "Perhaps", "there", "was", "something", "otherworldly…", "Maybe", "I’ll", "ask", "God", "once", "I", "meet", "him.", "And", "scene.", "So…", "Yeah.", "Pretty", "quick", "and", "it", "led", "me", "to", "think", "of", "just", "why", "the", "three", "starting", "sentences", "were", "necessary.", "Anything", "else", "would", "have", "drastically", "changed", "the", "narrative", "like", "what", "happened", "here.", "Hell,", "I", "was", "able", "to", "get", "this", "done", "in", "under", "1,000", "words", "because", "I", "decided", "to", "pull", "a", "War", "of", "the", "Worlds", "ending", "and", "the", "CRGE", "decided", "“eh,", "that", "works”.", "The", "best", "thing", "I", "could", "say", "for", "this", "new", "way", "of", "generating", "scenarios", "for", "Winter", "is", "that", "it", "shakes", "up", "the", "formula", "quite", "a", "bit.", "Like,", "a", "pseudo-sci-fi", "story", "where", "the", "Germans", "faked", "an", "alien", "invasion", "to", "get", "close", "to", "the", "enemy", "and", "strike", "them", "is", "interesting.", "Looking", "back", "at", "Winter,", "it", "still", "holds", "a", "place", "in", "my", "heart", "for", "being", "a", "rather", "great", "starting", "game,", "especially", "for", "those", "who", "are", "just", "beginning", "to", "Solo", "and", "the", "idea", "of", "a", "System", "+", "Engine", "+", "Drivers", "is", "intimidating.", "That", "said,", "it", "feels", "a", "little", "limited", "in", "what", "you", "could", "do,", "there’s", "no", "real", "indication", "of", "which", "scene", "to", "do", "—", "save", "for", "the", "beginning", "(which", "is", "always", "a", "Camaraderie", "scene)", "and", "when", "you", "volunteer", "(which", "is", "followed", "by", "a", "Violence", "scene)", "—", "unless", "you", "decide", "to", "randomly", "roll", "for", "it,", "and", "the", "Volunteering", "doesn’t", "exactly", "have", "any", "benefits", "that", "encourages", "the", "risk", "and", "seems", "to", "only", "exist", "when", "you", "want", "to", "hit", "the", "endgame", "early.", "That", "said,", "I", "still", "like", "Winter", "for", "its", "simplicity", "and", "fluff", "over", "crunch", "and", "it", "definitely", "gives", "you", "a", "sort", "of", "skeleton", "of", "what", "to", "write", "for", "an", "actual", "play.", "I", "recommend", "it", "for", "anyone", "who", "wants", "to", "spend", "their", "Rememberance", "Day", "playing", "a", "simple", "little", "war", "game.", "Bon", "Voyage,", "gamers." ] ] ]
[ [ "en", "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Trinidad's", "Jack", "Warner", "resigns", "amid", "fraud", "inquiry", "Published", "duration", "22", "April", "2013", "image", "caption", "Jack", "Warner", "attended", "an", "emergency", "cabinet", "meeting", "in", "Trinidad", "on", "Sunday", "A", "former", "top", "figure", "in", "international", "football,", "Jack", "Warner,", "has", "resigned", "as", "Trinidad", "and", "Tobago's", "minister", "of", "security", "amid", "an", "inquiry", "into", "fraud.", "Investigators", "at", "the", "Caribbean,", "North", "and", "Central", "American", "international", "football", "body,", "Concacaf,", "accuse", "Mr", "Warner", "of", "embezzlement.", "He", "stepped", "down", "as", "Concacaf's", "president", "in", "2011.", "Mr", "Warner,", "a", "former", "vice-president", "of", "the", "international", "football", "federation", "Fifa,", "denies", "any", "wrongdoing.", "But", "he", "has", "been", "under", "pressure", "at", "home", "since", "the", "investigation's", "findings", "were", "revealed", "on", "Friday.", "PM's", "thanks", "Prime", "Minister", "Kamla", "Persad-Bissessar", "said", "in", "a", "short", "statement", "on", "Sunday", "that", "Mr", "Warner", "had", "offered", "to", "resign", "from", "her", "cabinet", "and", "she", "had", "accepted", "his", "decision.", "\"I", "wish", "to", "thank", "Mr", "Warner", "for", "his", "service", "to", "the", "government", "and", "people", "of", "Trinidad", "and", "Tobago,''", "she", "said.", "A", "Concacaf", "ethics", "panel", "accused", "Mr", "Warner", "and", "former", "secretary", "general", "Chuck", "Blazer", "of", "enriching", "themselves", "through", "fraud", "during", "their", "time", "with", "the", "football", "body.", "They", "are", "accused", "of", "failing", "to", "disclose", "that", "a", "$25.9m", "(£17m)", "centre", "of", "excellence", "was", "built", "on", "Mr", "Warner's", "land", "and", "that", "Mr", "Blazer", "received", "$20m", "from", "Concacaf.", "Neither", "Mr", "Warner", "nor", "Mr", "Blazer", "co-operated", "with", "the", "investigation,", "which", "was", "based", "on", "documents", "and", "38", "interviews,", "and", "Mr", "Blazer", "has", "also", "denied", "any", "wrongdoing.", "Mr", "Warner", "stood", "down", "from", "his", "role", "with", "Fifa", "in", "2011", "after", "being", "accused", "of", "paying", "bribes", "to", "Caribbean", "associations.", "He", "had", "already", "been", "suspended", "by", "Fifa", "but", "his", "decision", "to", "resign", "meant", "that", "all", "investigations", "into", "him", "were", "closed." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Trinidad's", "Jack", "Warner", "resigns", "amid", "fraud", "inquiry", "Published", "duration", "22", "April", "2013", "image", "caption", "Jack", "Warner", "attended", "an", "emergency", "cabinet", "meeting", "in", "Trinidad", "on", "Sunday", "A", "former", "top", "figure", "in", "international", "football,", "Jack", "Warner,", "has", "resigned", "as", "Trinidad", "and", "Tobago's", "minister", "of", "security", "amid", "an", "inquiry", "into", "fraud.", "Investigators", "at", "the", "Caribbean,", "North", "and", "Central", "American", "international", "football", "body,", "Concacaf,", "accuse", "Mr", "Warner", "of", "embezzlement.", "He", "stepped", "down", "as", "Concacaf's", "president", "in", "2011.", "Mr", "Warner,", "a", "former", "vice-president", "of", "the", "international", "football", "federation", "Fifa,", "denies", "any", "wrongdoing.", "But", "he", "has", "been", "under", "pressure", "at", "home", "since", "the", "investigation's", "findings", "were", "revealed", "on", "Friday.", "PM's", "thanks", "Prime", "Minister", "Kamla", "Persad-Bissessar", "said", "in", "a", "short", "statement", "on", "Sunday", "that", "Mr", "Warner", "had", "offered", "to", "resign", "from", "her", "cabinet", "and", "she", "had", "accepted", "his", "decision.", "\"I", "wish", "to", "thank", "Mr", "Warner", "for", "his", "service", "to", "the", "government", "and", "people", "of", "Trinidad", "and", "Tobago,''", "she", "said.", "A", "Concacaf", "ethics", "panel", "accused", "Mr", "Warner", "and", "former", "secretary", "general", "Chuck", "Blazer", "of", "enriching", "themselves", "through", "fraud", "during", "their", "time", "with", "the", "football", "body.", "They", "are", "accused", "of", "failing", "to", "disclose", "that", "a", "$25.9m", "(£17m)", "centre", "of", "excellence", "was", "built", "on", "Mr", "Warner's", "land", "and", "that", "Mr", "Blazer", "received", "$20m", "from", "Concacaf.", "Neither", "Mr", "Warner", "nor", "Mr", "Blazer", "co-operated", "with", "the", "investigation,", "which", "was", "based", "on", "documents", "and", "38", "interviews,", "and", "Mr", "Blazer", "has", "also", "denied", "any", "wrongdoing.", "Mr", "Warner", "stood", "down", "from", "his", "role", "with", "Fifa", "in", "2011", "after", "being", "accused", "of", "paying", "bribes", "to", "Caribbean", "associations.", "He", "had", "already", "been", "suspended", "by", "Fifa", "but", "his", "decision", "to", "resign", "meant", "that", "all", "investigations", "into", "him", "were", "closed." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Alles", "nicht", "so", "einfach.", "Die", "Spinnen!", "=", "The", "spiders!", "Die", "spinnen!", "=", "They", "are", "crazy!", "Er", "hatte", "liebe", "Genossen.", "=", "He", "had", "kind", "companions.", "Er", "hatte", "Liebe", "genossen.", "=", "He", "had", "enjoyed", "love.", "Sich", "brüsten", "und", "Anderem", "zuwenden.", "=", "to", "gloat", "and", "turn", "towards", "other", "things", "Sich", "Brüsten", "und", "Anderem", "zuwenden.", "=", "to", "turn", "towards", "breasts", "and", "other", "things", "Sie", "konnte", "geschickt", "Blasen", "und", "Glieder", "behandeln.", "=", "She", "was", "adept", "at", "treating", "blisters", "and", "limbs.", "Sie", "konnte", "geschickt", "blasen", "und", "Glieder", "behandeln.", "=", "She", "was", "adept", "at", "giving", "blowjobs", "and", "handling", "members.", "Der", "Gefangene", "floh.", "=", "The", "prisoner", "escaped.", "Der", "gefangene", "Floh.", "=", "The", "imprisoned", "flea", "Helft", "den", "armen", "Vögeln.", "=", "Help", "the", "poor", "birds.", "Helft", "den", "Armen", "vögeln.", "=", "Help", "poor", "people", "with", "sex." ] ]
[ [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "nl", "nl", "en", "de", "de", "de", "de", "de", "de", "nl", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "de", "de", "de", "nl", "nl", "en", "en", "nl", "de", "de", "de", "nl", "nl", "nl", "en", "en", "en", "de" ] ]
[ [ [ "He", "had", "kind", "companions.", "Er", "hatte", "Liebe", "genossen.", "=", "He", "had", "enjoyed", "love.", "Sich", "brüsten", "und", "Anderem", "zuwenden.", "=", "to", "gloat", "and", "turn", "towards", "other", "things", "Sich", "Brüsten", "und", "Anderem", "zuwenden.", "=", "to", "turn", "towards", "breasts", "and", "other", "things" ], [ "She", "was", "adept", "at", "giving", "blowjobs", "and", "handling", "members.", "Der", "Gefangene", "floh.", "=", "The", "prisoner", "escaped.", "Der", "gefangene", "Floh.", "=", "The", "imprisoned", "flea", "Helft", "den", "armen", "Vögeln.", "=", "Help", "the", "poor", "birds.", "Helft", "den", "Armen", "vögeln.", "=", "Help", "poor", "people", "with", "sex." ] ] ]
[ [ "nl", "en" ] ]
[ "mono" ]
[ [ "Arthrex", "announced", "Monday", "it", "will", "build", "a", "surgical", "device", "and", "implant", "manufacturing", "facility", "in", "Anderson", "County", "and", "will", "create", "more", "than", "1,000", "new", "jobs", "over", "the", "next", "5", "years.", "Construction", "of", "the", "$30", "million,", "200,000-square-foot", "facility", "is", "set", "to", "begin", "in", "2018", "and", "be", "completed", "by", "2019.The", "facility", "will", "be", "built", "in", "the", "Anderson", "County", "Technology", "and", "Manufacturing", "Center", "on", "Highway", "76", "in", "Sandy", "Springs.\"This", "investment", "is", "part", "of", "Arthrex's", "global", "expansion", "plan", "to", "support", "the", "growth", "and", "development", "of", "new", "and", "innovative", "products", "that", "help", "surgeons", "treat", "their", "patients", "better,\"", "Andy", "Owen,", "Anthrex", "Vice", "President", "of", "Manufacturing", "said.", "\"It", "also", "represents", "our", "continued", "commitment", "to", "manufacturing", "quality", "products", "in", "the", "United", "States.\"The", "Anderson", "facility", "will", "be", "the", "Arthrex’s", "fourth", "U.S.", "based", "manufacturing", "facility.", "The", "others", "are", "in", "Ave", "Maria,", "FL", "and", "Santa", "Barbara", "and", "City", "of", "Industry,", "CA.\"Arthrex", "plans", "to", "work", "with", "Tri-County", "Technical", "College", "in", "Anderson", "to", "develop", "a", "strong", "pipeline", "of", "qualified", "manufacturing", "personnel,", "utilizing", "their", "in-depth", "programs", "and", "long-standing", "relationships", "with", "institutions", "like", "Clemson", "University", "that", "are", "dedicated", "to", "supporting", "the", "manufacturing", "industry,\"", "a", "news", "release", "said.", "Hiring", "will", "begin", "within", "the", "next", "12-18", "months.", "Click", "here", "to", "find", "out", "about", "how", "to", "apply.", "Arthrex", "announced", "Monday", "it", "will", "build", "a", "surgical", "device", "and", "implant", "manufacturing", "facility", "in", "Anderson", "County", "and", "will", "create", "more", "than", "1,000", "new", "jobs", "over", "the", "next", "5", "years.", "Construction", "of", "the", "$30", "million,", "200,000-square-foot", "facility", "is", "set", "to", "begin", "in", "2018", "and", "be", "completed", "by", "2019.", "The", "facility", "will", "be", "built", "in", "the", "Anderson", "County", "Technology", "and", "Manufacturing", "Center", "on", "Highway", "76", "in", "Sandy", "Springs.", "\"This", "investment", "is", "part", "of", "Arthrex's", "global", "expansion", "plan", "to", "support", "the", "growth", "and", "development", "of", "new", "and", "innovative", "products", "that", "help", "surgeons", "treat", "their", "patients", "better,\"", "Andy", "Owen,", "Anthrex", "Vice", "President", "of", "Manufacturing", "said.", "\"It", "also", "represents", "our", "continued", "commitment", "to", "manufacturing", "quality", "products", "in", "the", "United", "States.\"", "The", "Anderson", "facility", "will", "be", "the", "Arthrex’s", "fourth", "U.S.", "based", "manufacturing", "facility.", "The", "others", "are", "in", "Ave", "Maria,", "FL", "and", "Santa", "Barbara", "and", "City", "of", "Industry,", "CA.", "\"Arthrex", "plans", "to", "work", "with", "Tri-County", "Technical", "College", "in", "Anderson", "to", "develop", "a", "strong", "pipeline", "of", "qualified", "manufacturing", "personnel,", "utilizing", "their", "in-depth", "programs", "and", "long-standing", "relationships", "with", "institutions", "like", "Clemson", "University", "that", "are", "dedicated", "to", "supporting", "the", "manufacturing", "industry,\"", "a", "news", "release", "said.", "Hiring", "will", "begin", "within", "the", "next", "12-18", "months.", "Click", "here", "to", "find", "out", "about", "how", "to", "apply." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Arthrex", "announced", "Monday", "it", "will", "build", "a", "surgical", "device", "and", "implant", "manufacturing", "facility", "in", "Anderson", "County", "and", "will", "create", "more", "than", "1,000", "new", "jobs", "over", "the", "next", "5", "years.", "Construction", "of", "the", "$30", "million,", "200,000-square-foot", "facility", "is", "set", "to", "begin", "in", "2018", "and", "be", "completed", "by", "2019.The", "facility", "will", "be", "built", "in", "the", "Anderson", "County", "Technology", "and", "Manufacturing", "Center", "on", "Highway", "76", "in", "Sandy", "Springs.\"This", "investment", "is", "part", "of", "Arthrex's", "global", "expansion", "plan", "to", "support", "the", "growth", "and", "development", "of", "new", "and", "innovative", "products", "that", "help", "surgeons", "treat", "their", "patients", "better,\"", "Andy", "Owen,", "Anthrex", "Vice", "President", "of", "Manufacturing", "said.", "\"It", "also", "represents", "our", "continued", "commitment", "to", "manufacturing", "quality", "products", "in", "the", "United", "States.\"The", "Anderson", "facility", "will", "be", "the", "Arthrex’s", "fourth", "U.S.", "based", "manufacturing", "facility.", "The", "others", "are", "in", "Ave", "Maria,", "FL", "and", "Santa", "Barbara", "and", "City", "of", "Industry,", "CA.\"Arthrex", "plans", "to", "work", "with", "Tri-County", "Technical", "College", "in", "Anderson", "to", "develop", "a", "strong", "pipeline", "of", "qualified", "manufacturing", "personnel,", "utilizing", "their", "in-depth", "programs", "and", "long-standing", "relationships", "with", "institutions", "like", "Clemson", "University", "that", "are", "dedicated", "to", "supporting", "the", "manufacturing", "industry,\"", "a", "news", "release", "said.", "Hiring", "will", "begin", "within", "the", "next", "12-18", "months.", "Click", "here", "to", "find", "out", "about", "how", "to", "apply.", "Arthrex", "announced", "Monday", "it", "will", "build", "a", "surgical", "device", "and", "implant", "manufacturing", "facility", "in", "Anderson", "County", "and", "will", "create", "more", "than", "1,000", "new", "jobs", "over", "the", "next", "5", "years.", "Construction", "of", "the", "$30", "million,", "200,000-square-foot", "facility", "is", "set", "to", "begin", "in", "2018", "and", "be", "completed", "by", "2019.", "The", "facility", "will", "be", "built", "in", "the", "Anderson", "County", "Technology", "and", "Manufacturing", "Center", "on", "Highway", "76", "in", "Sandy", "Springs.", "\"This", "investment", "is", "part", "of", "Arthrex's", "global", "expansion", "plan", "to", "support", "the", "growth", "and", "development", "of", "new", "and", "innovative", "products", "that", "help", "surgeons", "treat", "their", "patients", "better,\"", "Andy", "Owen,", "Anthrex", "Vice", "President", "of", "Manufacturing", "said.", "\"It", "also", "represents", "our", "continued", "commitment", "to", "manufacturing", "quality", "products", "in", "the", "United", "States.\"", "The", "Anderson", "facility", "will", "be", "the", "Arthrex’s", "fourth", "U.S.", "based", "manufacturing", "facility.", "The", "others", "are", "in", "Ave", "Maria,", "FL", "and", "Santa", "Barbara", "and", "City", "of", "Industry,", "CA.", "\"Arthrex", "plans", "to", "work", "with", "Tri-County", "Technical", "College", "in", "Anderson", "to", "develop", "a", "strong", "pipeline", "of", "qualified", "manufacturing", "personnel,", "utilizing", "their", "in-depth", "programs", "and", "long-standing", "relationships", "with", "institutions", "like", "Clemson", "University", "that", "are", "dedicated", "to", "supporting", "the", "manufacturing", "industry,\"", "a", "news", "release", "said.", "Hiring", "will", "begin", "within", "the", "next", "12-18", "months.", "Click", "here", "to", "find", "out", "about", "how", "to", "apply." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Fresh", "protests", "began", "in", "Hong", "Kong", "on", "Saturday", "amid", "concerns", "that", "Beijing", "plans", "to", "tighten", "its", "control", "in", "the", "territory.", "Over", "3,000", "gathered", "in", "the", "city", "center", "and", "more", "than", "200", "were", "arrested.", "Police", "released", "tear", "gas", "into", "the", "crowd", "and", "fired", "rubber", "bullets", "and", "water", "cannons", "to", "quell", "the", "protest,", "which", "authorities", "said", "did", "not", "have", "official", "police", "permission", "to", "take", "place.", "\"The", "entire", "government", "is", "being", "controlled", "by", "the", "central", "government", "now,", "so", "we", "have", "to", "come", "out", "to", "protect", "the", "freedoms", "we", "deserve,\"", "a", "17-year-old", "protester", "told", "the", "AFP", "news", "agency.", "\"Some", "masked", "rioters", "vandalized", "shops", "and", "committed", "arson.", "Some", "even", "placed", "nails", "on", "the", "road,\"", "police", "said", "in", "a", "statement.", "Protesters", "also", "sprayed", "graffiti", "and", "broke", "the", "windows", "of", "the", "Chinese", "state", "news", "agency", "Xinhua,", "the", "first", "time", "the", "agency", "has", "been", "subject", "to", "attack", "in", "the", "last", "five", "months.", "Protesters", "lit", "fires", "and", "threw", "petrol", "bombs", "after", "night", "fell.", "Read", "more:", "Hong", "Kong", "crisis:", "What", "you", "need", "to", "know", "Xinhua", "news", "agency", "windows", "were", "broken", "China", "'will", "not", "tolerate'", "protesters", "Protesters", "occupied", "streets", "in", "the", "upscale", "Causeway", "Bay", "shopping", "area.", "Riot", "police", "were", "present,", "conducted", "searches", "and", "issued", "warnings", "that", "the", "rally", "was", "illegal.", "Many", "protesters", "defied", "a", "government", "ban", "on", "face", "masks", "and", "some", "wore", "gas", "masks.", "Streets", "in", "the", "area", "are", "lined", "with", "banks", "and", "high-end", "jewelry", "and", "fashion", "stores.", "Protesters", "took", "to", "side", "streets", "to", "avoid", "police,", "as", "a", "large", "truck", "scattered", "protesters", "when", "it", "blasted", "capsaicin,", "a", "skin", "and", "eye", "irritant,", "onto", "the", "street.", "The", "action", "comes", "a", "day", "after", "China", "announced", "on", "Friday", "that", "it", "will", "not", "tolerate", "any", "challenge", "to", "Hong", "Kong's", "system", "of", "government.", "Authorities", "also", "plan", "to", "increase", "patriotic", "education", "in", "Hong", "Kong.", "Read", "more:", "Anti-mask", "law:", "Hong", "Kong", "moving", "toward'martial", "law'", "Masked", "protesters", "in", "Hong", "Kong", "'Emergency", "call'", "Pro-democracy", "activist", "Joshua", "Wong", "called", "for", "100,000", "people", "to", "take", "to", "the", "streets", "on", "Saturday", "in", "the", "anti-government", "protests.", "This", "is", "the", "22nd", "week", "of", "unbroken", "protests.", "\"Exercising", "freedom", "of", "assembly", "has", "become", "increasingly", "difficult", "as", "police", "in", "HK", "holds", "tighter", "grip", "in", "recent", "months,\"", "he", "wrote", "on", "Twitter.", "He", "described", "this", "fresh", "protest", "as", "an", "\"emergency", "call\"", "for", "increased", "autonomy.", "Many", "protesters", "carried", "British", "or", "colonial", "flags,", "in", "reference", "to", "the", "promises", "made", "by", "the", "UK", "in", "1997", "at", "the", "time", "of", "the", "handover.", "The", "protests", "were", "later", "re-branded", "as", "\"election", "rallies.\"", "Hong", "Kong", "will", "hold", "district", "council", "elections", "next", "month.", "The", "protests", "began", "in", "June", "over", "a", "now", "defunct", "proposal", "to", "allow", "extraditions", "to", "mainland", "China.", "In", "the", "following", "months,", "protesters", "began", "to", "demand", "direct", "elections", "for", "Hong", "Kong's", "leaders.", "ed/sms", "(Reuters,", "AP,", "dpa)", "DW's", "editors", "send", "out", "a", "selection", "of", "the", "day's", "hard", "news", "and", "quality", "feature", "journalism.", "You", "can", "sign", "up", "to", "receive", "it", "directly", "here." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Fresh", "protests", "began", "in", "Hong", "Kong", "on", "Saturday", "amid", "concerns", "that", "Beijing", "plans", "to", "tighten", "its", "control", "in", "the", "territory.", "Over", "3,000", "gathered", "in", "the", "city", "center", "and", "more", "than", "200", "were", "arrested.", "Police", "released", "tear", "gas", "into", "the", "crowd", "and", "fired", "rubber", "bullets", "and", "water", "cannons", "to", "quell", "the", "protest,", "which", "authorities", "said", "did", "not", "have", "official", "police", "permission", "to", "take", "place.", "\"The", "entire", "government", "is", "being", "controlled", "by", "the", "central", "government", "now,", "so", "we", "have", "to", "come", "out", "to", "protect", "the", "freedoms", "we", "deserve,\"", "a", "17-year-old", "protester", "told", "the", "AFP", "news", "agency.", "\"Some", "masked", "rioters", "vandalized", "shops", "and", "committed", "arson.", "Some", "even", "placed", "nails", "on", "the", "road,\"", "police", "said", "in", "a", "statement.", "Protesters", "also", "sprayed", "graffiti", "and", "broke", "the", "windows", "of", "the", "Chinese", "state", "news", "agency", "Xinhua,", "the", "first", "time", "the", "agency", "has", "been", "subject", "to", "attack", "in", "the", "last", "five", "months.", "Protesters", "lit", "fires", "and", "threw", "petrol", "bombs", "after", "night", "fell.", "Read", "more:", "Hong", "Kong", "crisis:", "What", "you", "need", "to", "know", "Xinhua", "news", "agency", "windows", "were", "broken", "China", "'will", "not", "tolerate'", "protesters", "Protesters", "occupied", "streets", "in", "the", "upscale", "Causeway", "Bay", "shopping", "area.", "Riot", "police", "were", "present,", "conducted", "searches", "and", "issued", "warnings", "that", "the", "rally", "was", "illegal.", "Many", "protesters", "defied", "a", "government", "ban", "on", "face", "masks", "and", "some", "wore", "gas", "masks.", "Streets", "in", "the", "area", "are", "lined", "with", "banks", "and", "high-end", "jewelry", "and", "fashion", "stores.", "Protesters", "took", "to", "side", "streets", "to", "avoid", "police,", "as", "a", "large", "truck", "scattered", "protesters", "when", "it", "blasted", "capsaicin,", "a", "skin", "and", "eye", "irritant,", "onto", "the", "street.", "The", "action", "comes", "a", "day", "after", "China", "announced", "on", "Friday", "that", "it", "will", "not", "tolerate", "any", "challenge", "to", "Hong", "Kong's", "system", "of", "government.", "Authorities", "also", "plan", "to", "increase", "patriotic", "education", "in", "Hong", "Kong.", "Read", "more:", "Anti-mask", "law:", "Hong", "Kong", "moving", "toward'martial", "law'", "Masked", "protesters", "in", "Hong", "Kong", "'Emergency", "call'", "Pro-democracy", "activist", "Joshua", "Wong", "called", "for", "100,000", "people", "to", "take", "to", "the", "streets", "on", "Saturday", "in", "the", "anti-government", "protests.", "This", "is", "the", "22nd", "week", "of", "unbroken", "protests.", "\"Exercising", "freedom", "of", "assembly", "has", "become", "increasingly", "difficult", "as", "police", "in", "HK", "holds", "tighter", "grip", "in", "recent", "months,\"", "he", "wrote", "on", "Twitter.", "He", "described", "this", "fresh", "protest", "as", "an", "\"emergency", "call\"", "for", "increased", "autonomy.", "Many", "protesters", "carried", "British", "or", "colonial", "flags,", "in", "reference", "to", "the", "promises", "made", "by", "the", "UK", "in", "1997", "at", "the", "time", "of", "the", "handover.", "The", "protests", "were", "later", "re-branded", "as", "\"election", "rallies.\"", "Hong", "Kong", "will", "hold", "district", "council", "elections", "next", "month.", "The", "protests", "began", "in", "June", "over", "a", "now", "defunct", "proposal", "to", "allow", "extraditions", "to", "mainland", "China.", "In", "the", "following", "months,", "protesters", "began", "to", "demand", "direct", "elections", "for", "Hong", "Kong's", "leaders.", "ed/sms", "(Reuters,", "AP,", "dpa)", "DW's", "editors", "send", "out", "a", "selection", "of", "the", "day's", "hard", "news", "and", "quality", "feature", "journalism.", "You", "can", "sign", "up", "to", "receive", "it", "directly", "here." ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "A", "few", "years", "ago,", "the", "oldest", "known", "piece", "of", "clothing", "ever", "discovered", "in", "Norway,", "a", "tunic", "dating", "from", "the", "Iron", "Age,", "was", "found", "on", "a", "glacier", "in", "Breheimen.", "Now", "about", "to", "be", "reconstructed", "using", "Iron", "Age", "textile", "techniques,", "it", "is", "hoped", "the", "tunic", "will", "inspire", "Norwegian", "fashion", "designers.", "Excitement", "There", "was", "huge", "excitement", "among", "archaeologists", "when,", "three", "years", "ago,", "the", "oldest", "piece", "of", "clothing", "ever", "discovered", "in", "Norway", "–", "a", "woollen", "tunic", "–", "was", "found", "by", "an", "archaeological", "expedition", "to", "the", "Lendbreen", "glacier", "in", "Breheimen", "National", "Park.", "As", "a", "result", "of", "climate", "change,", "the", "Lendbreen", "glacier,", "just", "like", "other", "glaciers", "throughout", "Norway,", "has", "in", "the", "past", "few", "years", "been", "retreating.", "The", "melting", "of", "the", "glaciers", "is", "constantly", "revealing", "ancient", "artefacts.", "As", "the", "temperature", "rises", "each", "year,", "the", "assemblages", "of", "prehistoric", "hunters", "emerge", "from", "the", "ice.", "The", "tunic", "was", "made", "of", "warm", "wool", "and", "woven", "in", "diamond", "twill.", "The", "owner,", "who", "lived", "in", "the", "late", "Iron", "Age", "(third–fourth", "centuries", "AD),", "was", "wearing", "well-worn", "outdoor", "clothing,", "originally", "of", "high", "quality.", "As", "well", "as", "the", "tunic,", "the", "archaeologists", "surveying", "the", "Lendbreen", "glacier", "found", "shoes,", "hunting", "gear,", "tent", "pegs", "and", "large", "amounts", "of", "horse", "dung,", "all", "dating", "from", "the", "Iron", "Age.", "The", "horse", "dung", "shows", "where", "the", "hunters", "tethered", "their", "horses", "while", "hunting", "reindeer", "on", "the", "glacier.", "In", "summer,", "the", "reindeer", "were", "so", "plagued", "by", "reindeer", "warble", "fly,", "a", "bumblebee-like", "insect", "that", "lays", "its", "eggs", "on", "reindeer", "hair", "which", "develop", "into", "larvae", "that", "burrow", "under", "the", "skin,", "that", "the", "animals", "sought", "refuge", "on", "the", "glacier.", "And", "the", "hunters", "took", "advantage", "of", "that.", "The", "glacier", "protected", "the", "artefacts", "so", "well", "that", "the", "archaeologists", "found", "not", "only", "arrowheads,", "but", "also", "whole", "arrows", "complete", "with", "fletching", "and", "shafts.", "But", "the", "biggest", "surprise", "of", "all", "was", "when", "they", "found", "the", "tunic,", "bundled", "up", "and", "covered", "by", "horse", "dung.", "“It’s", "very", "rarely", "that", "we", "find", "well-preserved", "clothing", "from", "prehistoric", "times,”", "explains", "Marianne", "Vedeler,", "Associate", "Professor", "at", "the", "Museum", "of", "Cultural", "History", "at", "the", "University", "of", "Osl,", "Norway,", "to", "the", "research", "magazine", "Apollon.", "“Only", "a", "handful", "of", "clothing", "like", "this", "has", "been", "found", "in", "Europe.”", "The", "tunic,", "which", "was", "made", "some", "time", "between", "AD", "230", "and", "390,", "attracted", "broad", "coverage", "in", "Norwegian", "and", "international", "media", "when", "the", "discovery", "was", "made", "three", "years", "ago.", "What", "is", "not", "so", "widely", "known,", "however,", "is", "that", "the", "Museum", "of", "Cultural", "History", "at", "the", "University", "of", "Oslo", "and", "the", "Norwegian", "Mountain", "Museum", "(Norsk", "Fjellmuseum)", "in", "Lom", "are", "making", "two", "reconstructions", "of", "the", "tunic", "to", "show", "what", "it", "looked", "like", "when", "it", "was", "new.", "One", "tunic", "will", "be", "on", "display", "at", "the", "museum", "in", "Oslo,", "the", "other", "at", "the", "museum", "in", "Lom,", "which", "has", "a", "large", "exhibition", "of", "the", "archaeological", "finds", "from", "the", "Lendbreen", "glacier,", "some", "ten", "kilometres", "west", "of", "Lom.", "Marianne", "Vedeler", "adds:", "“The", "remarkable", "thing", "is", "how", "old", "and", "well-preserved", "the", "tunic", "was.", "It", "is", "a", "very", "fine", "example", "of", "how", "prehistoric", "people", "used", "wool.", "One", "of", "our", "aims", "in", "reconstructing", "the", "tunic", "is", "to", "learn", "more", "about", "how", "the", "textile", "was", "made,", "how", "time-consuming", "it", "was", "to", "make,", "and", "how", "the", "wool", "was", "used.”", "Overhair", "and", "underwool", "The", "wool", "of", "the", "old,", "Norwegian", "sheep", "breeds", "had", "two", "layers.", "The", "outer-layer", "hair,", "known", "as", "overhair,", "is", "long", "and", "stiff", "and", "acts", "as", "a", "sort", "of", "raincoat", "for", "the", "sheep.", "The", "innermost", "layer,", "called", "underwool,", "is", "soft", "and", "fine", "and", "resembles", "the", "wool", "we", "find", "in", "modern", "sheep", "breeds.", "The", "different", "properties", "of", "the", "wool", "were", "used", "for", "different", "types", "of", "textile.", "“Textiles", "made", "from", "overhair", "were", "more", "water-resistant", "and", "more", "hard-wearing", "than", "if", "they", "had", "been", "made", "of", "underwool.", "We", "were", "therefore", "surprised", "to", "discover", "that", "the", "tunic", "from", "Lendbreen", "was", "made", "almost", "exclusively", "from", "underwool,", "that", "is", "to", "say", "the", "wool", "from", "the", "innermost", "layer.", "The", "tunic", "is", "a", "strange", "mixture", "of", "fine", "wool", "and", "simple", "cut.", "Most", "Iron", "Age", "clothing", "was", "repaired", "and", "re-used.", "More", "hard-wearing", "than", "today’s", "clothing,", "it", "might", "be", "used", "for", "several", "decades.", "The", "tunic", "may", "have", "been", "used", "for", "something", "else", "before", "it", "was", "left", "on", "the", "glacier.", "It", "was", "old", "and", "worn", "when", "found,", "and", "had", "several", "patches", "sewn", "on", "it.", "The", "sleeves", "had", "also", "been", "sewn", "on", "at", "a", "later", "date", "than", "the", "original", "tunic.”", "Separating", "the", "wool", "Present-day", "wild", "sheep,", "like", "Iron", "Age", "sheep,", "have", "two", "layers", "of", "wool.", "For", "this", "reason,", "the", "Museum", "of", "Cultural", "History", "will", "use", "wool", "from", "Norwegian", "wild", "sheep", "to", "recreate", "the", "tunic.", "The", "wool", "is", "being", "supplied", "by", "a", "sheep", "farmer", "at", "Hareid", "in", "Sunnmøre." ], [ "Among", "other", "things,", "the", "researchers", "will", "be", "seeking", "to", "assess", "how", "much", "work", "was", "required", "to", "separate", "the", "overhair", "from", "the", "soft", "underwool", "and", "how", "long", "it", "would", "have", "taken", "to", "make", "the", "tunic.", "Before", "the", "wool", "can", "be", "spun,", "all", "the", "overhair", "must", "be", "removed.", "The", "traditional", "wool", "spinnery", "at", "Selbu", "Spinneri", "will", "be", "responsible", "for", "separating", "the", "wool", "and", "spinning", "it.", "Some", "of", "the", "wool", "will", "be", "spun", "on", "a", "hand", "spindle", "–", "a", "long", "thin", "spindle", "with", "a", "round", "whorl", "–", "which", "was", "the", "only", "known", "method", "of", "spinning", "in", "olden", "times.", "It", "was", "not", "until", "the", "1700s", "that", "the", "spinning", "wheel", "first", "appeared.", "“Spinning", "the", "wool", "demanded", "an", "enormous", "amount", "of", "work", "and", "in", "those", "days", "represented", "a", "bottleneck", "in", "the", "production", "process.", "Having", "all", "the", "wool", "spun", "by", "hand", "would", "have", "been", "too", "costly", "for", "our", "project,", "so", "we", "are", "also", "spinning", "some", "mechanically,”", "Vedeler", "explains.", "Distinctive", "diamond", "pattern", "When", "the", "archaeologists", "found", "the", "tunic", "on", "the", "glacier,", "it", "was", "possible", "to", "discern", "a", "diamond", "pattern", "in", "the", "textile,", "as", "long", "as", "the", "tunic", "was", "wet.", "The", "distinctive", "weaving", "technique", "used", "to", "make", "this", "pattern", "is", "known", "as", "diamond", "twill", "and", "is", "held", "to", "be", "quite", "advanced.", "“Two", "colours", "were", "used", "in", "the", "tunic", "to", "create", "a", "mottled", "pattern.", "The", "combination", "of", "the", "diamond", "twill", "weave", "and", "this", "pattern", "is", "unusual,", "and", "it", "is", "precisely", "this", "combination", "that", "we", "intend", "to", "copy.”", "The", "underwool", "from", "the", "wild", "sheep", "can", "be", "sorted", "in", "shades", "from", "pale", "grey", "through", "to", "dark", "grey.", "For", "the", "recreation,", "Vedeler", "has", "chosen", "to", "use", "the", "palest", "and", "darkest", "shades.", "Bronze", "Age", "weaving", "The", "spun", "woollen", "yarn", "will", "be", "woven", "on", "a", "vertical", "warp-weighted", "loom,", "which", "is", "the", "oldest", "kind", "of", "loom", "we", "know", "of:", "“The", "loom", "is", "simple,", "but", "time-consuming", "to", "use,”", "says", "Vedeler.", "Consisting", "of", "a", "simple", "upright", "frame", "with", "two", "horizontal", "beams,", "the", "loom", "is", "leant", "against", "a", "wall.", "The", "vertical", "warp", "threads", "hang", "freely", "from", "the", "upper", "beam.", "To", "keep", "the", "warp", "threads", "taut,", "stones", "or", "other", "heavy", "weights", "are", "hung", "from", "the", "bottom", "of", "bundles", "of", "warp", "threads.", "The", "weaving", "is", "done", "from", "the", "top", "of", "the", "loom", "downwards", "and", "every", "line", "of", "weft", "thread", "is", "beaten", "tightly", "in", "place", "with", "a", "sword", "beater.", "The", "textiles", "will", "be", "woven", "by", "handweaver", "Lena", "Hammarlund", "from", "Gothenburg.", "Lena", "specializes", "in", "reconstructing", "prehistoric", "textiles.", "Once", "the", "textile", "has", "been", "woven,", "the", "two", "tunics", "will", "be", "sewn", "by", "tailors", "at", "the", "traditional", "craft", "business", "Heimen", "Husflid", "in", "Oslo.", "“The", "reconstruction", "project", "is", "exciting.", "We", "are", "learning", "a", "huge", "amount", "in", "collaboration", "with", "the", "craftspeople.", "It", "is", "only", "when", "we", "reconstruct", "the", "tunic", "that", "we", "can", "understand", "how", "it", "was", "made.”", "Wants", "to", "inspire", "fashion", "designers", "Marianne", "Vedeler", "hopes", "the", "reconstruction", "will", "inspire", "Norwegian", "designers", "to", "create", "new,", "modern", "textiles.", "“Clothes", "were", "not", "consumer", "items", "in", "the", "Iron", "Age.", "It", "was", "important", "to", "be", "able", "to", "re-use", "clothing,", "and", "in", "those", "days", "clothes", "lasted", "a", "long", "time.", "Today,", "we", "spend", "enormous", "resources", "on", "clothes.", "And", "modern", "clothes", "are", "not", "durable.", "If", "we", "can", "use", "local", "raw", "materials", "and", "create", "clothing", "of", "high", "quality,", "it", "will", "be", "good", "for", "us", "all.", "We", "are", "therefore", "hoping", "that", "designers", "will", "be", "inspired", "by", "this", "example", "of", "old,", "Norwegian", "design.", "If", "we", "can", "create", "modern", "textiles", "from", "a", "prehistoric", "design,", "we", "hope", "also", "to", "be", "able", "to", "give", "a", "boost", "to", "the", "Norwegian", "wool", "industry.", "Sadly,", "much", "of", "the", "wool", "from", "the", "old", "sheep", "breeds", "currently", "goes", "to", "waste,”", "adds", "Vedeler,", "who,", "in", "company", "with", "ethnologist", "Ingun", "Grimstad", "Klepp", "of", "the", "National", "Institute", "for", "Consumer", "Research,", "and", "journalist", "Tone", "Skårdal", "Tobiasson", "–", "the", "author", "of", "a", "number", "of", "books", "about", "fashion", "and", "design", "–", "has", "made", "an", "all-out", "effort", "to", "rectify", "this", "through", "the", "“VikingGold”", "project.", "Transport", "route", "over", "the", "glacier", "The", "director", "of", "the", "Norwegian", "Mountain", "Museum,", "Mai", "Bakken,", "is", "looking", "forward", "to", "exhibiting", "the", "reconstructed", "tunic", "at", "the", "museum", "in", "Lom.", "“The", "tunic", "gives", "us", "a", "picture", "of", "how", "Iron", "Age", "people", "lived", "in", "Norway", "1,700", "years", "ago.", "Other", "objects", "found", "on", "the", "glacier", "were", "shoes,", "textile", "remains", "that", "might", "have", "been", "used", "as", "toilet", "paper,", "bandages", "or", "menstrual", "rags,", "items", "of", "horse", "tack,", "horse", "skulls,", "horseshoes", "and", "horse", "dung.", "All", "these", "finds", "give", "us", "a", "completely", "different", "picture", "of", "what", "the", "mountains", "were", "used", "for.", "It", "was", "not", "only", "hunters", "who", "went", "onto", "the", "glaciers", "to", "hunt", "reindeer;", "the", "glaciers", "were", "also", "used", "as", "transport", "routes", "for", "people", "travelling", "between", "the", "valleys,", "such", "as", "between", "Bøverdalen", "and", "Ottadalen.", "It", "was", "quicker", "to", "go", "over", "the", "mountain" ], [ "pass", "than", "to", "go", "round.", "The", "glaciers", "in", "those", "days", "were", "much", "bigger,", "and", "easy", "to", "walk", "on.", "The", "tunic", "may", "have", "been", "lost", "on", "just", "such", "a", "trip,”", "says", "Mai", "Bakken,", "who,", "along", "with", "Marianne", "Vedeler,", "first", "had", "the", "idea", "of", "recreating", "the", "tunic", "so", "as", "to", "convey", "this", "exciting", "find", "to", "the", "public.", "Sources", "and", "further", "reading:", "http://www.heritagedaily.com/2014/11/recreating-clothes-from-the-iron-age/105668", "http://antiquity.ac.uk/ant/087/ant0870788.htm", "http://www.medievalhistories.com/wp-content/uploads/tniic2-Mårten-Teigen.jpg?35be33" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "A", "few", "years", "ago,", "the", "oldest", "known", "piece", "of", "clothing", "ever", "discovered", "in", "Norway,", "a", "tunic", "dating", "from", "the", "Iron", "Age,", "was", "found", "on", "a", "glacier", "in", "Breheimen.", "Now", "about", "to", "be", "reconstructed", "using", "Iron", "Age", "textile", "techniques,", "it", "is", "hoped", "the", "tunic", "will", "inspire", "Norwegian", "fashion", "designers.", "Excitement", "There", "was", "huge", "excitement", "among", "archaeologists", "when,", "three", "years", "ago,", "the", "oldest", "piece", "of", "clothing", "ever", "discovered", "in", "Norway", "–", "a", "woollen", "tunic", "–", "was", "found", "by", "an", "archaeological", "expedition", "to", "the", "Lendbreen", "glacier", "in", "Breheimen", "National", "Park.", "As", "a", "result", "of", "climate", "change,", "the", "Lendbreen", "glacier,", "just", "like", "other", "glaciers", "throughout", "Norway,", "has", "in", "the", "past", "few", "years", "been", "retreating.", "The", "melting", "of", "the", "glaciers", "is", "constantly", "revealing", "ancient", "artefacts.", "As", "the", "temperature", "rises", "each", "year,", "the", "assemblages", "of", "prehistoric", "hunters", "emerge", "from", "the", "ice.", "The", "tunic", "was", "made", "of", "warm", "wool", "and", "woven", "in", "diamond", "twill.", "The", "owner,", "who", "lived", "in", "the", "late", "Iron", "Age", "(third–fourth", "centuries", "AD),", "was", "wearing", "well-worn", "outdoor", "clothing,", "originally", "of", "high", "quality.", "As", "well", "as", "the", "tunic,", "the", "archaeologists", "surveying", "the", "Lendbreen", "glacier", "found", "shoes,", "hunting", "gear,", "tent", "pegs", "and", "large", "amounts", "of", "horse", "dung,", "all", "dating", "from", "the", "Iron", "Age.", "The", "horse", "dung", "shows", "where", "the", "hunters", "tethered", "their", "horses", "while", "hunting", "reindeer", "on", "the", "glacier.", "In", "summer,", "the", "reindeer", "were", "so", "plagued", "by", "reindeer", "warble", "fly,", "a", "bumblebee-like", "insect", "that", "lays", "its", "eggs", "on", "reindeer", "hair", "which", "develop", "into", "larvae", "that", "burrow", "under", "the", "skin,", "that", "the", "animals", "sought", "refuge", "on", "the", "glacier.", "And", "the", "hunters", "took", "advantage", "of", "that.", "The", "glacier", "protected", "the", "artefacts", "so", "well", "that", "the", "archaeologists", "found", "not", "only", "arrowheads,", "but", "also", "whole", "arrows", "complete", "with", "fletching", "and", "shafts.", "But", "the", "biggest", "surprise", "of", "all", "was", "when", "they", "found", "the", "tunic,", "bundled", "up", "and", "covered", "by", "horse", "dung.", "“It’s", "very", "rarely", "that", "we", "find", "well-preserved", "clothing", "from", "prehistoric", "times,”", "explains", "Marianne", "Vedeler,", "Associate", "Professor", "at", "the", "Museum", "of", "Cultural", "History", "at", "the", "University", "of", "Osl,", "Norway,", "to", "the", "research", "magazine", "Apollon.", "“Only", "a", "handful", "of", "clothing", "like", "this", "has", "been", "found", "in", "Europe.”", "The", "tunic,", "which", "was", "made", "some", "time", "between", "AD", "230", "and", "390,", "attracted", "broad", "coverage", "in", "Norwegian", "and", "international", "media", "when", "the", "discovery", "was", "made", "three", "years", "ago.", "What", "is", "not", "so", "widely", "known,", "however,", "is", "that", "the", "Museum", "of", "Cultural", "History", "at", "the", "University", "of", "Oslo", "and", "the", "Norwegian", "Mountain", "Museum" ], [ "in", "Lom", "are", "making", "two", "reconstructions", "of", "the", "tunic", "to", "show", "what", "it", "looked", "like", "when", "it", "was", "new.", "One", "tunic", "will", "be", "on", "display", "at", "the", "museum", "in", "Oslo,", "the", "other", "at", "the", "museum", "in", "Lom,", "which", "has", "a", "large", "exhibition", "of", "the", "archaeological", "finds", "from", "the", "Lendbreen", "glacier,", "some", "ten", "kilometres", "west", "of", "Lom.", "Marianne", "Vedeler", "adds:", "“The", "remarkable", "thing", "is", "how", "old", "and", "well-preserved", "the", "tunic", "was.", "It", "is", "a", "very", "fine", "example", "of", "how", "prehistoric", "people", "used", "wool.", "One", "of", "our", "aims", "in", "reconstructing", "the", "tunic", "is", "to", "learn", "more", "about", "how", "the", "textile", "was", "made,", "how", "time-consuming", "it", "was", "to", "make,", "and", "how", "the", "wool", "was", "used.”", "Overhair", "and", "underwool", "The", "wool", "of", "the", "old,", "Norwegian", "sheep", "breeds", "had", "two", "layers.", "The", "outer-layer", "hair,", "known", "as", "overhair,", "is", "long", "and", "stiff", "and", "acts", "as", "a", "sort", "of", "raincoat", "for", "the", "sheep.", "The", "innermost", "layer,", "called", "underwool,", "is", "soft", "and", "fine", "and", "resembles", "the", "wool", "we", "find", "in", "modern", "sheep", "breeds.", "The", "different", "properties", "of", "the", "wool", "were", "used", "for", "different", "types", "of", "textile.", "“Textiles", "made", "from", "overhair", "were", "more", "water-resistant", "and", "more", "hard-wearing", "than", "if", "they", "had", "been", "made", "of", "underwool.", "We", "were", "therefore", "surprised", "to", "discover", "that", "the", "tunic", "from", "Lendbreen", "was", "made", "almost", "exclusively", "from", "underwool,", "that", "is", "to", "say", "the", "wool", "from", "the", "innermost", "layer.", "The", "tunic", "is", "a", "strange", "mixture", "of", "fine", "wool", "and", "simple", "cut.", "Most", "Iron", "Age", "clothing", "was", "repaired", "and", "re-used.", "More", "hard-wearing", "than", "today’s", "clothing,", "it", "might", "be", "used", "for", "several", "decades.", "The", "tunic", "may", "have", "been", "used", "for", "something", "else", "before", "it", "was", "left", "on", "the", "glacier.", "It", "was", "old", "and", "worn", "when", "found,", "and", "had", "several", "patches", "sewn", "on", "it.", "The", "sleeves", "had", "also", "been", "sewn", "on", "at", "a", "later", "date", "than", "the", "original", "tunic.”", "Separating", "the", "wool", "Present-day", "wild", "sheep,", "like", "Iron", "Age", "sheep,", "have", "two", "layers", "of", "wool.", "For", "this", "reason,", "the", "Museum", "of", "Cultural", "History", "will", "use", "wool", "from", "Norwegian", "wild", "sheep", "to", "recreate", "the", "tunic.", "The", "wool", "is", "being", "supplied", "by", "a", "sheep", "farmer", "at", "Hareid", "in", "Sunnmøre." ] ], [ [ "Among", "other", "things,", "the", "researchers", "will", "be", "seeking", "to", "assess", "how", "much", "work", "was", "required", "to", "separate", "the", "overhair", "from", "the", "soft", "underwool", "and", "how", "long", "it", "would", "have", "taken", "to", "make", "the", "tunic.", "Before", "the", "wool", "can", "be", "spun,", "all", "the", "overhair", "must", "be", "removed.", "The", "traditional", "wool", "spinnery", "at", "Selbu", "Spinneri", "will", "be", "responsible", "for", "separating", "the", "wool", "and", "spinning", "it.", "Some", "of", "the", "wool", "will", "be", "spun", "on", "a", "hand", "spindle", "–", "a", "long", "thin", "spindle", "with", "a", "round", "whorl", "–", "which", "was", "the", "only", "known", "method", "of", "spinning", "in", "olden", "times.", "It", "was", "not", "until", "the", "1700s", "that", "the", "spinning", "wheel", "first", "appeared.", "“Spinning", "the", "wool", "demanded", "an", "enormous", "amount", "of", "work", "and", "in", "those", "days", "represented", "a", "bottleneck", "in", "the", "production", "process.", "Having", "all", "the", "wool", "spun", "by", "hand", "would", "have", "been", "too", "costly", "for", "our", "project,", "so", "we", "are", "also", "spinning", "some", "mechanically,”", "Vedeler", "explains.", "Distinctive", "diamond", "pattern", "When", "the", "archaeologists", "found", "the", "tunic", "on", "the", "glacier,", "it", "was", "possible", "to", "discern", "a", "diamond", "pattern", "in", "the", "textile,", "as", "long", "as", "the", "tunic", "was", "wet.", "The", "distinctive", "weaving", "technique", "used", "to", "make", "this", "pattern", "is", "known", "as", "diamond", "twill", "and", "is", "held", "to", "be", "quite", "advanced.", "“Two", "colours", "were", "used", "in", "the", "tunic", "to", "create", "a", "mottled", "pattern.", "The", "combination", "of", "the", "diamond", "twill", "weave", "and", "this", "pattern", "is", "unusual,", "and", "it", "is", "precisely", "this", "combination", "that", "we", "intend", "to", "copy.”", "The", "underwool", "from", "the", "wild", "sheep", "can", "be", "sorted", "in", "shades", "from", "pale", "grey", "through", "to", "dark", "grey.", "For", "the", "recreation,", "Vedeler", "has", "chosen", "to", "use", "the", "palest", "and", "darkest", "shades.", "Bronze", "Age", "weaving", "The", "spun", "woollen", "yarn", "will", "be", "woven", "on", "a", "vertical", "warp-weighted", "loom,", "which", "is", "the", "oldest", "kind", "of", "loom", "we", "know", "of:", "“The", "loom", "is", "simple,", "but", "time-consuming", "to", "use,”", "says", "Vedeler.", "Consisting", "of", "a", "simple", "upright", "frame", "with", "two", "horizontal", "beams,", "the", "loom", "is", "leant", "against", "a", "wall.", "The", "vertical", "warp", "threads", "hang", "freely", "from", "the", "upper", "beam.", "To", "keep", "the", "warp", "threads", "taut,", "stones", "or", "other", "heavy", "weights", "are", "hung", "from", "the", "bottom", "of", "bundles", "of", "warp", "threads.", "The", "weaving", "is", "done", "from", "the", "top", "of", "the", "loom", "downwards", "and", "every", "line", "of", "weft", "thread", "is", "beaten", "tightly", "in", "place", "with", "a", "sword", "beater.", "The", "textiles", "will", "be", "woven", "by", "handweaver", "Lena", "Hammarlund", "from", "Gothenburg.", "Lena", "specializes", "in", "reconstructing", "prehistoric", "textiles.", "Once", "the", "textile", "has", "been", "woven,", "the", "two", "tunics", "will", "be", "sewn", "by", "tailors", "at", "the", "traditional", "craft", "business", "Heimen", "Husflid", "in", "Oslo.", "“The", "reconstruction", "project", "is", "exciting.", "We", "are", "learning", "a", "huge", "amount", "in", "collaboration", "with", "the", "craftspeople.", "It", "is", "only", "when", "we", "reconstruct", "the", "tunic", "that", "we", "can", "understand", "how", "it", "was", "made.”", "Wants", "to", "inspire", "fashion", "designers", "Marianne", "Vedeler", "hopes", "the", "reconstruction", "will", "inspire", "Norwegian", "designers", "to", "create", "new,", "modern", "textiles.", "“Clothes", "were", "not", "consumer", "items", "in", "the", "Iron", "Age.", "It", "was", "important", "to", "be", "able", "to", "re-use", "clothing,", "and", "in", "those", "days", "clothes", "lasted", "a", "long", "time.", "Today,", "we", "spend", "enormous", "resources", "on", "clothes.", "And", "modern", "clothes", "are", "not", "durable.", "If", "we", "can", "use", "local", "raw", "materials", "and", "create", "clothing", "of", "high", "quality,", "it", "will", "be", "good", "for", "us", "all.", "We", "are", "therefore", "hoping", "that", "designers", "will", "be", "inspired", "by", "this", "example", "of", "old,", "Norwegian", "design.", "If", "we", "can", "create", "modern", "textiles", "from", "a", "prehistoric", "design,", "we", "hope", "also", "to", "be", "able", "to", "give", "a", "boost", "to", "the", "Norwegian", "wool", "industry.", "Sadly,", "much", "of", "the", "wool", "from", "the", "old", "sheep", "breeds", "currently", "goes", "to", "waste,”", "adds", "Vedeler,", "who,", "in", "company", "with", "ethnologist", "Ingun", "Grimstad", "Klepp", "of", "the", "National", "Institute", "for", "Consumer", "Research,", "and", "journalist", "Tone", "Skårdal", "Tobiasson", "–", "the", "author", "of", "a", "number", "of", "books", "about", "fashion", "and", "design", "–", "has", "made", "an", "all-out", "effort", "to", "rectify", "this", "through", "the", "“VikingGold”", "project.", "Transport", "route", "over", "the", "glacier", "The", "director", "of", "the", "Norwegian", "Mountain", "Museum,", "Mai", "Bakken,", "is", "looking", "forward", "to", "exhibiting", "the", "reconstructed", "tunic", "at", "the", "museum", "in", "Lom.", "“The", "tunic", "gives", "us", "a", "picture", "of", "how", "Iron", "Age", "people", "lived", "in", "Norway", "1,700", "years", "ago.", "Other", "objects", "found", "on", "the", "glacier", "were", "shoes,", "textile", "remains", "that", "might", "have", "been", "used", "as", "toilet", "paper,", "bandages", "or", "menstrual", "rags,", "items", "of", "horse", "tack,", "horse", "skulls,", "horseshoes", "and", "horse", "dung.", "All", "these", "finds", "give", "us", "a", "completely", "different", "picture", "of", "what", "the", "mountains", "were", "used", "for.", "It", "was", "not", "only", "hunters", "who", "went", "onto", "the", "glaciers", "to", "hunt", "reindeer;", "the", "glaciers", "were", "also", "used", "as", "transport", "routes", "for", "people", "travelling", "between", "the", "valleys,", "such", "as", "between", "Bøverdalen", "and", "Ottadalen.", "It", "was", "quicker", "to", "go", "over", "the", "mountain" ] ], [ [ "pass", "than", "to", "go", "round.", "The", "glaciers", "in", "those", "days", "were", "much", "bigger,", "and", "easy", "to", "walk", "on.", "The", "tunic", "may", "have", "been", "lost", "on", "just", "such", "a", "trip,”", "says", "Mai", "Bakken,", "who,", "along", "with", "Marianne", "Vedeler,", "first", "had", "the", "idea", "of", "recreating", "the", "tunic", "so", "as", "to", "convey", "this", "exciting", "find", "to", "the", "public.", "Sources", "and", "further", "reading:", "http://www.heritagedaily.com/2014/11/recreating-clothes-from-the-iron-age/105668", "http://antiquity.ac.uk/ant/087/ant0870788.htm", "http://www.medievalhistories.com/wp-content/uploads/tniic2-Mårten-Teigen.jpg?35be33" ] ] ]
[ [ "en", "en" ], [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "I", "have", "been", "exploring", "lately", "a", "lot", "about", "Content", "Hub,", "and", "today", "I", "would", "like", "to", "share", "with", "you,", "why", "you", "should", "consider", "using", "Content", "Hub", "with", "Sitecore", "JSS.", "Will", "my", "life", "be", "easy", "with", "Content", "Hub?", "Yes", "Does", "Content", "Hub,", "have", "its", "own", "CDN?", "Yes", "Can", "I", "make", "it", "work", "with", "Sitecore", "JSS", "and", "have", "ever", "faster", "web", "site?", "Yes", "That", "is", "3", "Yes’s", "for", "me,", "so", "I", "think", "I", "will", "go", "ahead", "proceed", "with", "showing", "you", "a", "POC.", "In", "order", "to", "get", "started", "fast", "with", "Sitecore", "JSS.", "You", "can", "use", "one", "of", "my", "JSS", "Starter", "Kits.", "So", "next", "we", "need", "to", "make", "sure", "that", "Content", "Hub", "is", "installed.", "We", "are", "interested", "in", "Sitecore", "Connect™", "for", "Sitecore", "DAM", "https://dev.sitecore.net/Downloads/Sitecore_Plugin_for_Stylelabs_DAM.aspx", "Once", "you", "install", "the", "package", "you", "should", "have", "the", "config", "called", "Stylelabs.config.", "Most", "of", "the", "configuration", "will", "be", "done", "on", "the", "Content", "Hub", "side.", "Once", "everything", "is", "configured", "we", "can", "now", "go", "ahead", "and", "utilize", "it.", "You", "need", "to", "have", "an", "instance", "of", "Sitecore", "Content", "Hub", "running", "in", "production,", "it", "is", "a", "SaaS", "offering,", "so", "contact", "your", "Sitecore", "rep", "to", "get", "more", "info.", "So", "load", "your", "site", "in", "the", "Experience", "Editor:", "Select", "the", "image", "that", "you", "want", "to", "replace,", "and", "click", "on", "the", "little", "icon", "with", "3", "squares", "and", "a", "plus.", "You", "will", "get", "a", "nice", "UI,", "where", "you", "will", "be", "able", "to", "load", "your", "assets,", "you", "will", "search", "and", "find", "the", "image", "that", "you", "want.", "Once", "cool", "thing", "that", "I", "like", "a", "lot", "about", "the", "Content", "Hub,", "is", "that", "you", "can", "select", "and", "image", "and", "generate", "multiple", "versions", "of", "the", "same", "image,", "and", "then", "insert", "them", "anywhere", "you", "want,", "set", "the", "expiration", "date.", "Select", "the", "image", "and", "it", "will", "automatically", "be", "inserter", "into", "your", "site.", "Save", "it", "and", "publish", "it,", "and", "if", "you", "have", "a", "CDN", "already", "for", "your", "site,", "now", "you", "can", "two", "CDNs,", "one", "separate", "one", "from", "Content", "Hub", "to", "serve", "your", "images.", "Important", "note", "I", "did", "not", "use", "Photoshop", "to", "crop", "the", "image", "to", "a", "specific", "size.", "As", "you", "can", "see", "below", "performance", "of", "the", "Lighthouse", "score", "went", "from", "75", "to", "98.", "75", "was", "the", "score", "when", "the", "images", "were", "served", "by", "Sitecore.", "98", "was", "the", "score", "when", "the", "images", "were", "served", "from", "Content", "Hub", "CDN." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "I", "have", "been", "exploring", "lately", "a", "lot", "about", "Content", "Hub,", "and", "today", "I", "would", "like", "to", "share", "with", "you,", "why", "you", "should", "consider", "using", "Content", "Hub", "with", "Sitecore", "JSS.", "Will", "my", "life", "be", "easy", "with", "Content", "Hub?", "Yes", "Does", "Content", "Hub,", "have", "its", "own", "CDN?", "Yes", "Can", "I", "make", "it", "work", "with", "Sitecore", "JSS", "and", "have", "ever", "faster", "web", "site?", "Yes", "That", "is", "3", "Yes’s", "for", "me,", "so", "I", "think", "I", "will", "go", "ahead", "proceed", "with", "showing", "you", "a", "POC.", "In", "order", "to", "get", "started", "fast", "with", "Sitecore", "JSS.", "You", "can", "use", "one", "of", "my", "JSS", "Starter", "Kits.", "So", "next", "we", "need", "to", "make", "sure", "that", "Content", "Hub", "is", "installed.", "We", "are", "interested", "in", "Sitecore", "Connect™", "for", "Sitecore", "DAM", "https://dev.sitecore.net/Downloads/Sitecore_Plugin_for_Stylelabs_DAM.aspx", "Once", "you", "install", "the", "package", "you", "should", "have", "the", "config", "called", "Stylelabs.config.", "Most", "of", "the", "configuration", "will", "be", "done", "on", "the", "Content", "Hub", "side.", "Once", "everything", "is", "configured", "we", "can", "now", "go", "ahead", "and", "utilize", "it.", "You", "need", "to", "have", "an", "instance", "of", "Sitecore", "Content", "Hub", "running", "in", "production,", "it", "is", "a", "SaaS", "offering,", "so", "contact", "your", "Sitecore", "rep", "to", "get", "more", "info.", "So", "load", "your", "site", "in", "the", "Experience", "Editor:", "Select", "the", "image", "that", "you", "want", "to", "replace,", "and", "click", "on", "the", "little", "icon", "with", "3", "squares", "and", "a", "plus.", "You", "will", "get", "a", "nice", "UI,", "where", "you", "will", "be", "able", "to", "load", "your", "assets,", "you", "will", "search", "and", "find", "the", "image", "that", "you", "want.", "Once", "cool", "thing", "that", "I", "like", "a", "lot", "about", "the", "Content", "Hub,", "is", "that", "you", "can", "select", "and", "image", "and", "generate", "multiple", "versions", "of", "the", "same", "image,", "and", "then", "insert", "them", "anywhere", "you", "want,", "set", "the", "expiration", "date.", "Select", "the", "image", "and", "it", "will", "automatically", "be", "inserter", "into", "your", "site.", "Save", "it", "and", "publish", "it,", "and", "if", "you", "have", "a", "CDN", "already", "for", "your", "site,", "now", "you", "can", "two", "CDNs,", "one", "separate", "one", "from", "Content", "Hub", "to", "serve", "your", "images.", "Important", "note", "I", "did", "not", "use", "Photoshop", "to", "crop", "the", "image", "to", "a", "specific", "size.", "As", "you", "can", "see", "below", "performance", "of", "the", "Lighthouse", "score", "went", "from", "75", "to", "98.", "75", "was", "the", "score", "when", "the", "images", "were", "served", "by", "Sitecore.", "98", "was", "the", "score", "when", "the", "images", "were", "served", "from", "Content", "Hub", "CDN." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "OLATHE,", "Kan.", "—", "A", "Kansas", "man", "pleaded", "guilty", "on", "Tuesday", "to", "the", "murder", "of", "an", "Indian-born", "engineer", "whom", "he", "had", "angrily", "confronted", "about", "his", "immigration", "status", "at", "a", "bar", "here", "last", "year,", "then", "fatally", "shot", "in", "an", "attack", "that", "drew", "international", "scorn.", "Witnesses", "said", "the", "suspect,", "Adam", "Purinton,", "yelled,", "“Get", "out", "of", "my", "country”", "before", "firing", "the", "shots", "that", "killed", "the", "engineer,", "Srinivas", "Kuchibhotla,", "and", "wounded", "two", "others.", "Federal", "authorities", "called", "the", "attack", "a", "hate", "crime.", "Mr.", "Purinton’s", "guilty", "plea", "was", "for", "state", "charges", "of", "first-degree", "murder", "and", "attempted", "first-degree", "murder", "for", "the", "two", "men", "he", "wounded.", "Mr.", "Purinton,", "52,", "is", "expected", "to", "be", "sentenced", "to", "life", "in", "prison", "on", "May", "4,", "but", "he", "also", "still", "faces", "hate", "crime", "and", "firearm", "charges", "in", "federal", "court.", "The", "shooting", "came", "at", "a", "time", "of", "rising", "angst", "across", "the", "country", "over", "anti-immigrant", "sentiment", "and", "its", "potential", "ramifications.", "“Today’s", "guilty", "verdict", "will", "not", "bring", "back", "my", "Srinu,", "but", "it", "will", "send", "a", "strong", "message", "that", "hate", "is", "never", "acceptable,”", "Mr.", "Kuchibhotla’s", "widow,", "Sunayana", "Dumala,", "said", "in", "a", "statement." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "OLATHE,", "Kan.", "—", "A", "Kansas", "man", "pleaded", "guilty", "on", "Tuesday", "to", "the", "murder", "of", "an", "Indian-born", "engineer", "whom", "he", "had", "angrily", "confronted", "about", "his", "immigration", "status", "at", "a", "bar", "here", "last", "year,", "then", "fatally", "shot", "in", "an", "attack", "that", "drew", "international", "scorn.", "Witnesses", "said", "the", "suspect,", "Adam", "Purinton,", "yelled,", "“Get", "out", "of", "my", "country”", "before", "firing", "the", "shots", "that", "killed", "the", "engineer,", "Srinivas", "Kuchibhotla,", "and", "wounded", "two", "others.", "Federal", "authorities", "called", "the", "attack", "a", "hate", "crime.", "Mr.", "Purinton’s", "guilty", "plea", "was", "for", "state", "charges", "of", "first-degree", "murder", "and", "attempted", "first-degree", "murder", "for", "the", "two", "men", "he", "wounded.", "Mr.", "Purinton,", "52,", "is", "expected", "to", "be", "sentenced", "to", "life", "in", "prison", "on", "May", "4,", "but", "he", "also", "still", "faces", "hate", "crime", "and", "firearm", "charges", "in", "federal", "court.", "The", "shooting", "came", "at", "a", "time", "of", "rising", "angst", "across", "the", "country", "over", "anti-immigrant", "sentiment", "and", "its", "potential", "ramifications.", "“Today’s", "guilty", "verdict", "will", "not", "bring", "back", "my", "Srinu,", "but", "it", "will", "send", "a", "strong", "message", "that", "hate", "is", "never", "acceptable,”", "Mr.", "Kuchibhotla’s", "widow,", "Sunayana", "Dumala,", "said", "in", "a", "statement." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Ireland", "and", "Ulster", "rugby", "player", "Paddy", "Jackson", "is", "accused", "of", "rape", "Ireland", "and", "Ulster", "rugby", "star", "Paddy", "Jackson", "has", "attended", "court", "in", "Belfast", "for", "a", "preliminary", "hearing", "ahead", "of", "his", "rape", "trial.", "Jackson,", "25,", "and", "club", "and", "international", "team", "mate", "Stuart", "Olding,", "24,", "are", "accused", "of", "raping", "the", "same", "woman", "at", "a", "property", "in", "south", "Belfast", "in", "June", "last", "year.", "They", "have", "strenuously", "denied", "the", "charges.", "Their", "high-profile", "trial", "is", "scheduled", "to", "start", "in", "January.", "During", "the", "short", "pre-trial", "hearing", "in", "Belfast", "Crown", "Court,", "prosecution", "and", "defence", "lawyers", "discussed", "a", "number", "of", "outstanding", "legal", "issues.", "Judge", "Patricia", "Smyth", "scheduled", "another", "hearing", "next", "Friday", "to", "further", "consider", "the", "legal", "matters", "prior", "to", "the", "scheduled", "start", "of", "the", "trial", "on", "January", "22.", "Jackson,", "from", "Oakleigh", "Park,", "Belfast,", "sat", "at", "the", "back", "of", "the", "court", "during", "the", "proceedings.", "He", "is", "accused", "of", "one", "count", "of", "rape", "and", "one", "of", "sexual", "assault.", "Olding,", "of", "Ardenlee", "Street,", "Belfast,", "is", "charged", "with", "two", "counts", "of", "rape.", "Two", "other", "men", "have", "also", "been", "returned", "for", "trial", "on", "charges", "connected", "with", "the", "2016", "incident.", "Blane", "McIlroy,", "26,", "from", "Royal", "Lodge", "Road,", "Ballydollaghan,", "Belfast,", "is", "accused", "of", "one", "count", "of", "exposure.", "Rory", "Harrison,", "25,", "from", "Manse", "Road,", "Belfast,", "is", "charged", "with", "perverting", "the", "course", "of", "justice", "and", "withholding", "information.", "He", "also", "attended", "Friday's", "short", "hearing.", "All", "four", "have", "pleaded", "not", "guilty", "and", "they", "are", "all", "on", "bail.", "Fly-half", "Jackson", "has", "been", "capped", "for", "Ireland", "25", "times", "and", "centre", "Olding", "has", "played", "four", "times.", "They", "are", "established", "stars", "for", "Ulster", "Rugby.", "The", "Irish", "Rugby", "Football", "Union", "and", "Ulster", "Rugby", "have", "said", "they", "will", "not", "play", "again", "until", "court", "proceedings", "conclude.", "PA", "Media" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Ireland", "and", "Ulster", "rugby", "player", "Paddy", "Jackson", "is", "accused", "of", "rape", "Ireland", "and", "Ulster", "rugby", "star", "Paddy", "Jackson", "has", "attended", "court", "in", "Belfast", "for", "a", "preliminary", "hearing", "ahead", "of", "his", "rape", "trial.", "Jackson,", "25,", "and", "club", "and", "international", "team", "mate", "Stuart", "Olding,", "24,", "are", "accused", "of", "raping", "the", "same", "woman", "at", "a", "property", "in", "south", "Belfast", "in", "June", "last", "year.", "They", "have", "strenuously", "denied", "the", "charges.", "Their", "high-profile", "trial", "is", "scheduled", "to", "start", "in", "January.", "During", "the", "short", "pre-trial", "hearing", "in", "Belfast", "Crown", "Court,", "prosecution", "and", "defence", "lawyers", "discussed", "a", "number", "of", "outstanding", "legal", "issues.", "Judge", "Patricia", "Smyth", "scheduled", "another", "hearing", "next", "Friday", "to", "further", "consider", "the", "legal", "matters", "prior", "to", "the", "scheduled", "start", "of", "the", "trial", "on", "January", "22.", "Jackson,", "from", "Oakleigh", "Park,", "Belfast,", "sat", "at", "the", "back", "of", "the", "court", "during", "the", "proceedings.", "He", "is", "accused", "of", "one", "count", "of", "rape", "and", "one", "of", "sexual", "assault.", "Olding,", "of", "Ardenlee", "Street,", "Belfast,", "is", "charged", "with", "two", "counts", "of", "rape.", "Two", "other", "men", "have", "also", "been", "returned", "for", "trial", "on", "charges", "connected", "with", "the", "2016", "incident.", "Blane", "McIlroy,", "26,", "from", "Royal", "Lodge", "Road,", "Ballydollaghan,", "Belfast,", "is", "accused", "of", "one", "count", "of", "exposure.", "Rory", "Harrison,", "25,", "from", "Manse", "Road,", "Belfast,", "is", "charged", "with", "perverting", "the", "course", "of", "justice", "and", "withholding", "information.", "He", "also", "attended", "Friday's", "short", "hearing.", "All", "four", "have", "pleaded", "not", "guilty", "and", "they", "are", "all", "on", "bail.", "Fly-half", "Jackson", "has", "been", "capped", "for", "Ireland", "25", "times", "and", "centre", "Olding", "has", "played", "four", "times.", "They", "are", "established", "stars", "for", "Ulster", "Rugby.", "The", "Irish", "Rugby", "Football", "Union", "and", "Ulster", "Rugby", "have", "said", "they", "will", "not", "play", "again", "until", "court", "proceedings", "conclude.", "PA", "Media" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "(CNN)", "House", "Minority", "Leader", "Nancy", "Pelosi", "sent", "a", "letter", "Thursday", "to", "House", "Speaker", "Paul", "Ryan", "urging", "him", "not", "to", "allow", "the", "House", "Russia", "investigation", "to", "be", "shut", "down.", "Pelosi's", "letter", "says", "Democrats", "are", "\"deeply", "concerned", "by", "the", "Majority's", "efforts", "to", "curtail", "the", "House", "Intelligence", "Committee", "investigation", "and", "its", "overall", "failure", "to", "address", "Russia's", "meddling", "in", "the", "2016", "election.\"", "\"Nothing", "less", "than", "America's", "democracy", "and", "national", "security", "are", "at", "stake,", "and", "therefore", "we", "must", "fully", "investigate", "Russia's", "assault", "on", "our", "election", "systems", "to", "prevent", "future", "foreign", "attacks,\"", "the", "California", "Democrat", "wrote.", "\"We", "expect", "that", "you", "will", "take", "urgent", "action", "to", "ensure", "this", "investigation", "can", "continue,", "and", "justice", "can", "be", "pursued,", "unhindered.\"", "Rep.", "Adam", "Schiff", "of", "California,", "the", "top", "Democrat", "on", "the", "House", "Intelligence", "Committee,", "warned", "last", "week", "that", "he", "was", "concerned", "House", "Republicans", "might", "end", "the", "committee's", "Russia", "investigation", "at", "the", "end", "of", "the", "year,", "with", "no", "witnesses", "yet", "scheduled", "in", "2018.", "Read", "More" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "(CNN)", "House", "Minority", "Leader", "Nancy", "Pelosi", "sent", "a", "letter", "Thursday", "to", "House", "Speaker", "Paul", "Ryan", "urging", "him", "not", "to", "allow", "the", "House", "Russia", "investigation", "to", "be", "shut", "down.", "Pelosi's", "letter", "says", "Democrats", "are", "\"deeply", "concerned", "by", "the", "Majority's", "efforts", "to", "curtail", "the", "House", "Intelligence", "Committee", "investigation", "and", "its", "overall", "failure", "to", "address", "Russia's", "meddling", "in", "the", "2016", "election.\"", "\"Nothing", "less", "than", "America's", "democracy", "and", "national", "security", "are", "at", "stake,", "and", "therefore", "we", "must", "fully", "investigate", "Russia's", "assault", "on", "our", "election", "systems", "to", "prevent", "future", "foreign", "attacks,\"", "the", "California", "Democrat", "wrote.", "\"We", "expect", "that", "you", "will", "take", "urgent", "action", "to", "ensure", "this", "investigation", "can", "continue,", "and", "justice", "can", "be", "pursued,", "unhindered.\"", "Rep.", "Adam", "Schiff", "of", "California,", "the", "top", "Democrat", "on", "the", "House", "Intelligence", "Committee,", "warned", "last", "week", "that", "he", "was", "concerned", "House", "Republicans", "might", "end", "the", "committee's", "Russia", "investigation", "at", "the", "end", "of", "the", "year,", "with", "no", "witnesses", "yet", "scheduled", "in", "2018.", "Read", "More" ] ] ]
[ [ "en" ] ]
[ "bi" ]
[ [ "Melancholic", "progressive", "metallers", "AMORPHIS", "will", "return", "to", "North", "America", "with", "a", "co-headlining", "trek", "with", "DARK", "TRANQUILLITY", "this", "September/October.", "Joining", "them", "are", "Portugal's", "premier", "gothic-metallic-force", "MOONSPELL,", "and", "Finnish", "melo-death", "contingent", "OMNIUM", "GATHERUM.", "AMORPHIS", "will", "be", "touring", "in", "support", "of", "their", "soon", "to", "be", "announced", "new", "album,", "produced", "and", "mixed", "once", "again", "by", "Jens", "Bogren", "(OPETH,", "AMON", "AMARTH,", "KATATONIA).", "Guitarist", "Esa", "Holopainen", "commented:", "\"We", "are", "extremely", "excited", "to", "start", "the", "world", "tour", "with", "new", "album", "from", "North", "America.", "\"There's", "been", "lot", "of", "requests", "to", "hit", "the", "states", "again", "after", "our", "last", "tour", "spring", "2017.", "This", "time", "we", "come", "over", "with", "a", "killer", "package.", "\"Touring", "with", "DARK", "TRANQUILLITY,", "MOONSPELL", "and", "OMNIUM", "GATHERUM", "is", "almost", "like", "having", "a", "road", "trip", "with", "best", "mates", "around.", "Every", "band", "has", "a", "strong", "fanbase", "so", "there", "will", "be", "something", "for", "everyone.\"", "Holopainen", "continued", "and", "offered", "this", "update", "from", "the", "studio", "as", "well:", "\"We", "just", "finished", "new", "album", "recordings", "with", "our", "producer", "Jens", "Bogren", "and", "result", "is", "very", "bombastic!", "Album", "release", "is", "tentatively", "this", "May", "and", "it's", "a", "great", "privilege", "to", "introduce", "new", "songs", "first", "time", "for", "North", "American", "audience.", "\"AMORPHIS", "has", "long", "history", "behind", "so", "once", "again", "we", "try", "to", "offer", "something", "for", "everyone.", "Impossible", "but", "doable.", "\"Shine", "on,", "see", "you", "soon", "and", "support", "live", "music.", "That", "keeps", "our", "engines", "running!\"", "AMORPHIS,", "DARK", "TRANQUILLITY,", "MOONSPELL,", "OMNIUM", "GATHERUM", "tour", "dates:", "Sep.", "07", "-", "New", "York,", "NY", "-", "Gramercy", "Theater", "Sep.", "08", "-", "Montreal,", "QUE", "-", "Cafe", "Campus", "Sep.", "09", "-", "Quebec", "City,", "QUE", "-", "Imperial", "de", "Quebec", "Sep.", "10", "-", "Toronto,", "ONT", "-", "Opera", "House", "Sep.", "11", "-", "Ft", "Wayne,", "IN", "-", "Pierre's", "Sep.", "12", "-", "Detroit,", "MI", "-", "Harpo's", "Sep.", "13", "-", "Joliet,", "Il", "-", "The", "Forge", "Sep.", "14", "-", "Minneapolis,", "MN", "-", "The", "Cabooze", "Sep.", "15", "-", "Winnipeg,", "MB", "-", "Park", "Theatre", "Sep.", "17", "-", "Edmonton,", "AB", "-", "The", "Starlite", "Room", "Sep.", "18", "-", "Calgary,", "AB", "-", "Dickens", "Sep.", "19", "-", "Vancouver,", "BC", "-", "Rickshaw", "Theater", "Sep.", "20", "-", "Seattle,", "WA", "-", "El", "Corazon", "Sep.", "22", "-", "Berkeley,", "CA", "-", "The", "UC", "Theatre", "Sep.", "23", "-", "Anaheim,", "CA", "-", "City", "National", "Grove", "Sep.", "24", "-", "West", "Hollywood,", "CA", "-", "Whiskey", "a", "Go", "Go", "Sep.", "25", "-", "San", "Diego,", "CA", "-", "Brick", "By", "Brick", "Sep.", "26", "-", "Tempe,", "AZ", "-", "Marquee", "Theatre", "Sep.", "27", "-", "Las", "Vegas,", "NV", "-", "House", "of", "Blues", "Sep.", "28", "-", "Salt", "Lake", "City,", "UT", "-", "Liquid", "joe's", "Sep.", "29", "-", "Denver,", "CO", "-", "Herman's", "Hideaway", "Oct.", "01", "-", "Dallas,", "TX", "-", "Trees", "Oct.", "02", "-", "San", "Antonio,", "TX", "-", "Rock", "Box", "Oct.", "03", "-", "Houston,", "TX", "-", "Scout", "Bar", "Oct.", "05", "-", "Tampa,", "FL", "-", "Orpheum", "Oct.", "06", "-", "West", "Palm", "Beach,", "FL", "-", "Kelsey", "Theater", "Oct.", "07", "-", "Atlanta,", "GA", "-", "The", "Masquerade", "Oct.", "09", "-", "Louisville,", "KY", "-", "Diamond", "Pub", "and", "Billiards", "Oct.", "10", "-", "Durham,", "NC", "-", "Motorco", "Oct.", "11", "-", "Baltimore,", "MD", "-", "Soundstage", "Oct.", "12", "-", "Philadelphia,", "PA", "-", "The", "Trocadero", "Oct.", "14", "-", "Clifton", "Park,", "NY", "-", "Upstate", "Concert", "Hall", "Longtime", "AMORPHIS", "bassist", "Niclas", "Etelävuori", "exited", "the", "band", "in", "April", "2017", "over", "management", "issues.", "AMORPHIS's", "latest", "album,", "\"Under", "The", "Red", "Cloud\",", "was", "released", "in", "September", "2015", "via", "Nuclear", "Blast." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "fr", "en", "en", "en", "en", "en", "en", "en", "es", "es", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "es", "es", "es", "es", "es", "es", "co", "co", "co", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "es", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "it", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Melancholic", "progressive", "metallers", "AMORPHIS", "will", "return", "to", "North", "America", "with", "a", "co-headlining", "trek", "with", "DARK", "TRANQUILLITY", "this", "September/October.", "Joining", "them", "are", "Portugal's", "premier", "gothic-metallic-force", "MOONSPELL,", "and", "Finnish", "melo-death", "contingent", "OMNIUM", "GATHERUM.", "AMORPHIS", "will", "be", "touring", "in", "support", "of", "their", "soon", "to", "be", "announced", "new", "album,", "produced", "and", "mixed", "once", "again", "by", "Jens", "Bogren", "(OPETH,", "AMON" ], [ "commented:", "\"We", "are", "extremely", "excited", "to", "start", "the", "world", "tour", "with", "new", "album", "from", "North", "America.", "\"There's", "been", "lot", "of", "requests", "to", "hit", "the", "states", "again", "after", "our", "last", "tour", "spring", "2017.", "This", "time", "we", "come", "over", "with", "a", "killer", "package.", "\"Touring", "with", "DARK", "TRANQUILLITY,", "MOONSPELL", "and", "OMNIUM", "GATHERUM", "is", "almost", "like", "having", "a", "road", "trip", "with", "best", "mates", "around.", "Every", "band", "has", "a", "strong", "fanbase", "so", "there", "will", "be", "something", "for", "everyone.\"", "Holopainen", "continued", "and", "offered", "this", "update", "from", "the", "studio", "as", "well:", "\"We", "just", "finished", "new", "album", "recordings", "with", "our", "producer", "Jens", "Bogren", "and", "result", "is", "very", "bombastic!", "Album", "release", "is", "tentatively", "this", "May", "and", "it's", "a", "great", "privilege", "to", "introduce", "new", "songs", "first", "time", "for", "North", "American", "audience.", "\"AMORPHIS", "has", "long", "history", "behind", "so", "once", "again", "we", "try", "to", "offer", "something", "for", "everyone.", "Impossible", "but", "doable.", "\"Shine", "on,", "see", "you", "soon", "and", "support", "live", "music.", "That", "keeps", "our", "engines", "running!\"", "AMORPHIS,", "DARK", "TRANQUILLITY,", "MOONSPELL,", "OMNIUM", "GATHERUM", "tour", "dates:", "Sep.", "07", "-", "New", "York,", "NY", "-", "Gramercy", "Theater", "Sep.", "08", "-" ], [ "Montreal,", "QUE", "-", "Cafe", "Campus", "Sep.", "09", "-", "Quebec", "City,", "QUE", "-", "Imperial", "de", "Quebec", "Sep.", "10", "-", "Toronto,", "ONT", "-", "Opera", "House", "Sep.", "11", "-", "Ft", "Wayne,", "IN", "-", "Pierre's", "Sep.", "12", "-", "Detroit,", "MI", "-", "Harpo's", "Sep.", "13", "-", "Joliet,", "Il" ], [ "-", "The", "Forge", "Sep.", "14", "-", "Minneapolis,", "MN", "-", "The", "Cabooze", "Sep.", "15", "-", "Winnipeg,", "MB", "-", "Park", "Theatre", "Sep.", "17", "-", "Edmonton,", "AB", "-", "The", "Starlite", "Room", "Sep.", "18", "-", "Calgary,", "AB", "-", "Dickens", "Sep.", "19", "-", "Vancouver,", "BC", "-", "Rickshaw", "Theater", "Sep.", "20", "-", "Seattle,", "WA", "-", "El", "Corazon", "Sep.", "22", "-", "Berkeley,", "CA", "-", "The", "UC", "Theatre", "Sep.", "23", "-", "Anaheim,", "CA", "-", "City", "National", "Grove", "Sep.", "24", "-", "West", "Hollywood,", "CA", "-", "Whiskey", "a", "Go", "Go", "Sep.", "25", "-", "San", "Diego,", "CA", "-", "Brick", "By", "Brick", "Sep.", "26", "-", "Tempe,", "AZ", "-", "Marquee", "Theatre", "Sep.", "27", "-", "Las", "Vegas,", "NV", "-", "House", "of", "Blues", "Sep.", "28", "-", "Salt", "Lake", "City,", "UT", "-", "Liquid", "joe's", "Sep.", "29", "-", "Denver,", "CO", "-", "Herman's", "Hideaway", "Oct.", "01", "-", "Dallas,", "TX", "-", "Trees", "Oct.", "02", "-", "San", "Antonio,", "TX", "-", "Rock", "Box", "Oct.", "03", "-", "Houston,", "TX", "-", "Scout", "Bar", "Oct.", "05", "-", "Tampa,", "FL", "-", "Orpheum", "Oct.", "06", "-", "West", "Palm", "Beach,", "FL", "-", "Kelsey", "Theater", "Oct.", "07", "-", "Atlanta,", "GA", "-", "The", "Masquerade", "Oct.", "09", "-", "Louisville,", "KY", "-", "Diamond", "Pub", "and", "Billiards", "Oct.", "10", "-", "Durham,", "NC", "-", "Motorco", "Oct.", "11", "-", "Baltimore,", "MD", "-", "Soundstage", "Oct.", "12", "-", "Philadelphia,", "PA", "-", "The", "Trocadero", "Oct.", "14", "-", "Clifton", "Park,", "NY", "-", "Upstate", "Concert", "Hall", "Longtime", "AMORPHIS", "bassist", "Niclas", "Etelävuori", "exited", "the", "band", "in", "April", "2017", "over", "management", "issues.", "AMORPHIS's", "latest", "album,", "\"Under", "The", "Red", "Cloud\",", "was", "released", "in", "September", "2015", "via", "Nuclear", "Blast." ] ] ]
[ [ "en", "en", "es", "en" ] ]
[ "mono" ]
[ [ "The", "NBA", "playoffs", "were", "dull,", "lopsided", "and", "predictable.", "The", "NBA", "crowned", "a", "champion,", "but", "with", "little", "(outside", "of", "the", "Bay", "Area)", "to", "celebrate.", "Even", "Kevin", "Durant", "spit", "out", "his", "post-championship", "beer.", "Then", "came", "the", "ever", "after.", "The", "league", "has", "come", "off", "its", "hinges", "in", "the", "last", "week,", "with", "draft", "picks", "swapped,", "players", "opting", "out,", "stars", "on", "the", "blocks", "and", "everyone", "making", "plans", "to", "construct", "super-teams", "that", "might", "possibly", "combat", "the", "Golden", "State", "Warriors.", "It’s", "wild.", "It", "may", "not", "be", "great", "for", "the", "NBA", "in", "the", "long", "term,", "but", "as", "a", "show,", "it’s", "on", "a", "run.", "Such", "a", "run", "that", "not", "even", "LaVar", "Ball", "can", "say", "something", "to", "break", "through", "the", "news", "clutter.", "Where", "to", "start?", "Normally,", "the", "Boston", "Celtics", "trading", "the", "No.", "1", "overall", "selection", "to", "Philadelphia", "for", "the", "No.", "3", "and", "a", "future", "No.", "1,", "perhaps", "even", "a", "top-five", "pick", "next", "year,", "would", "be", "the", "story", "of", "the", "draft", "build-up.", "Celtics", "president", "Danny", "Ainge", "predicted", "he", "would", "be", "able", "to", "get", "the", "player", "he", "wanted", "anyway", "(speculated", "to", "be", "Josh", "Jackson", "of", "Kansas)", "at", "three,", "so", "it", "was", "no", "risk.", "(Note:", "This", "is", "what", "executives", "in", "every", "sport", "always", "say", "when", "they", "drop", "back", "in", "the", "draft.", "It’s", "in", "the", "training", "manual", "for", "the", "job.)", "Philly", "gets", "Washington’s", "Markelle", "Fultz,", "a", "brilliant", "point", "guard", "to", "team", "with", "potential", "young", "stars", "Ben", "Simmons", "and", "Joel", "Embiid,", "in", "an", "attempt", "to", "turn", "“The", "Process”", "into", "a", "post-LeBron", "Eastern", "contender.", "Boston", "and", "Philly", "may", "be", "Eastern", "Conference", "contenders", "in", "the", "years", "to", "come,", "adding", "some", "spice", "to", "the", "deal.", "View", "photos", "Markelle", "Fultz", "will", "be", "part", "of", "an", "intriguing", "core", "in", "Philadelphia.", "(AP)", "More", "It’s", "a", "fascinating", "trade", "made", "even", "more", "fascinating", "when", "Jackson", "reportedly", "refused", "to", "work", "out", "for", "Boston", "unless", "he", "is", "guaranteed", "to", "be", "the", "No.", "3", "selection.", "Would", "that", "put", "6-foot-8", "forward", "Jayson", "Tatum", "from", "Duke", "on", "Boston’s", "radar?", "It’s", "not", "like", "he", "isn’t", "capable", "of", "being", "the", "best", "player", "in", "this", "draft.", "Ditto", "for", "Kentucky", "point", "guard", "De’Aaron", "Fox,", "although", "Boston", "probably", "isn’t", "interested", "in", "someone", "to", "handle", "the", "ball", "right", "now.", "Meanwhile,", "the", "Los", "Angles", "Lakers,", "at", "No.", "2,", "appear", "set", "to", "pick", "Lonzo", "Ball", "and", "his", "dad,", "who", "were", "once", "the", "biggest", "story", "in", "the", "draft", "in", "part", "because", "they", "refused", "to", "work", "out", "for", "anyone", "other", "than", "the", "hometown", "Lakers", "and", "in", "part", "because", "no", "one", "knows", "what", "LaVar", "might", "do", "or", "say", "on", "Thursday.", "The", "top", "of", "the", "draft", "is", "rarely", "this", "(a)", "stacked", "and", "(b)", "intriguing.", "This", "is", "all", "quaint", "though", "in", "the", "backdrop", "of", "everything", "else.", "No", "one", "is", "certain", "if", "any", "of", "these", "guys", "will", "be", "great", "NBA", "players", "–", "the", "history", "of", "the", "top", "five", "is", "littered", "with", "busts.", "Consider", "D’Angelo", "Russell,", "whom", "the", "Lakers", "took", "No.", "2", "overall", "in", "2015.", "He", "is", "a", "good", "player", "but", "is", "dealing", "with", "maturity", "issues.", "He", "also", "just", "got", "shipped", "out", "of", "LA", "to", "Brooklyn", "along", "with", "Timofey", "Mozgov", "in", "a", "salary", "dump.", "The", "goal?", "Merely", "try", "to", "get", "LeBron", "James", "to", "leave", "Cleveland", "as", "a", "free", "agent", "after", "the", "2017-18", "season", "and", "sign", "to", "finish", "his", "career", "in", "LA.", "Now", "that’s", "a", "power", "move", "by", "Magic", "Johnson.", "View", "photos", "The", "Lakers", "dealt", "D’Angelo", "Russell", "in", "a", "cap-clearing", "move.", "(AP)", "More", "It’s", "intriguing", "considering", "the", "Lakers", "are", "trying", "to", "build", "a", "power", "on", "the", "West", "Coast", "while", "archrival", "Boston", "is", "going", "for", "broke", "on", "the", "East", "Coast.", "The", "Celtics", "have", "as", "many", "as", "seven", "first-round", "draft", "picks", "in", "the", "next", "three", "years.", "That", "gives", "them", "assets", "and", "perhaps", "cap", "space", "with", "a", "focus", "on", "bringing", "in", "New", "Orleans", "megastar", "Anthony", "Davis", "at", "some", "point,", "or", "in", "the", "short", "term,", "trading", "for", "either", "Indiana’s", "Paul", "George", "or", "Chicago’s", "Jimmy", "Butler,", "who", "are", "both", "now", "on", "the", "block." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "NBA", "playoffs", "were", "dull,", "lopsided", "and", "predictable.", "The", "NBA", "crowned", "a", "champion,", "but", "with", "little", "(outside", "of", "the", "Bay", "Area)", "to", "celebrate.", "Even", "Kevin", "Durant", "spit", "out", "his", "post-championship", "beer.", "Then", "came", "the", "ever", "after.", "The", "league", "has", "come", "off", "its", "hinges", "in", "the", "last", "week,", "with", "draft", "picks", "swapped,", "players", "opting", "out,", "stars", "on", "the", "blocks", "and", "everyone", "making", "plans", "to", "construct", "super-teams", "that", "might", "possibly", "combat", "the", "Golden", "State", "Warriors.", "It’s", "wild.", "It", "may", "not", "be", "great", "for", "the", "NBA", "in", "the", "long", "term,", "but", "as", "a", "show,", "it’s", "on", "a", "run.", "Such", "a", "run", "that", "not", "even", "LaVar", "Ball", "can", "say", "something", "to", "break", "through", "the", "news", "clutter.", "Where", "to", "start?", "Normally,", "the", "Boston", "Celtics", "trading", "the", "No.", "1", "overall", "selection", "to", "Philadelphia", "for", "the", "No.", "3", "and", "a", "future", "No.", "1,", "perhaps", "even", "a", "top-five", "pick", "next", "year,", "would", "be", "the", "story", "of", "the", "draft", "build-up.", "Celtics", "president", "Danny", "Ainge", "predicted", "he", "would", "be", "able", "to", "get", "the", "player", "he", "wanted", "anyway", "(speculated", "to", "be", "Josh", "Jackson", "of", "Kansas)", "at", "three,", "so", "it", "was", "no", "risk.", "(Note:", "This", "is", "what", "executives", "in", "every", "sport", "always", "say", "when", "they", "drop", "back", "in", "the", "draft.", "It’s", "in", "the", "training", "manual", "for", "the", "job.)", "Philly", "gets", "Washington’s", "Markelle", "Fultz,", "a", "brilliant", "point", "guard", "to", "team", "with", "potential", "young", "stars", "Ben", "Simmons", "and", "Joel", "Embiid,", "in", "an", "attempt", "to", "turn", "“The", "Process”", "into", "a", "post-LeBron", "Eastern", "contender.", "Boston", "and", "Philly", "may", "be", "Eastern", "Conference", "contenders", "in", "the", "years", "to", "come,", "adding", "some", "spice", "to", "the", "deal.", "View", "photos", "Markelle", "Fultz", "will", "be", "part", "of", "an", "intriguing", "core", "in", "Philadelphia.", "(AP)", "More", "It’s", "a", "fascinating", "trade", "made", "even", "more", "fascinating", "when", "Jackson", "reportedly", "refused", "to", "work", "out", "for", "Boston", "unless", "he", "is", "guaranteed", "to", "be", "the", "No.", "3", "selection.", "Would", "that", "put", "6-foot-8", "forward", "Jayson", "Tatum", "from", "Duke", "on", "Boston’s", "radar?", "It’s", "not", "like", "he", "isn’t", "capable", "of", "being", "the", "best", "player", "in", "this", "draft.", "Ditto", "for", "Kentucky", "point", "guard", "De’Aaron", "Fox,", "although", "Boston", "probably", "isn’t", "interested", "in", "someone", "to", "handle", "the", "ball", "right", "now.", "Meanwhile,", "the", "Los", "Angles", "Lakers,", "at", "No.", "2,", "appear", "set", "to", "pick", "Lonzo", "Ball", "and", "his", "dad,", "who", "were", "once", "the", "biggest", "story", "in", "the", "draft", "in", "part", "because", "they", "refused", "to", "work", "out", "for", "anyone", "other", "than", "the", "hometown", "Lakers", "and", "in", "part", "because", "no", "one", "knows", "what", "LaVar", "might", "do", "or", "say", "on", "Thursday.", "The", "top", "of", "the", "draft", "is", "rarely", "this", "(a)", "stacked", "and", "(b)", "intriguing.", "This", "is", "all", "quaint", "though", "in", "the", "backdrop", "of", "everything", "else.", "No", "one", "is", "certain", "if", "any", "of", "these", "guys", "will", "be", "great", "NBA", "players", "–", "the", "history", "of", "the", "top", "five", "is", "littered", "with", "busts.", "Consider", "D’Angelo", "Russell,", "whom", "the", "Lakers", "took", "No.", "2", "overall", "in", "2015.", "He", "is", "a", "good", "player", "but", "is", "dealing", "with", "maturity", "issues.", "He", "also", "just", "got", "shipped", "out", "of", "LA", "to", "Brooklyn", "along", "with", "Timofey", "Mozgov", "in", "a", "salary", "dump.", "The", "goal?", "Merely", "try", "to", "get", "LeBron", "James", "to", "leave", "Cleveland", "as", "a", "free", "agent", "after", "the", "2017-18", "season", "and", "sign", "to", "finish", "his", "career", "in", "LA.", "Now", "that’s", "a", "power", "move", "by", "Magic", "Johnson.", "View", "photos", "The", "Lakers", "dealt", "D’Angelo", "Russell", "in", "a", "cap-clearing", "move.", "(AP)", "More", "It’s", "intriguing", "considering", "the", "Lakers", "are", "trying", "to", "build", "a", "power", "on", "the", "West", "Coast", "while", "archrival", "Boston", "is", "going", "for", "broke", "on", "the", "East", "Coast.", "The", "Celtics", "have", "as", "many", "as", "seven", "first-round", "draft", "picks", "in", "the", "next", "three", "years.", "That", "gives", "them", "assets", "and", "perhaps", "cap", "space", "with", "a", "focus", "on", "bringing", "in", "New", "Orleans", "megastar", "Anthony", "Davis", "at", "some", "point,", "or", "in", "the", "short", "term,", "trading", "for", "either", "Indiana’s", "Paul", "George", "or", "Chicago’s", "Jimmy", "Butler,", "who", "are", "both", "now", "on", "the", "block." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "IRIBが16日月曜、報じたところによりますと、全人代は、年次会議の終わりに際し、中国の軍事予算を1300億ドルに増額することに同意しています。", "全人代はまた、政府の業務計画や、国家の経済・社会の発展計画、そして政府から出された予算案を可決しました。", "さらに、共産党をはじめとする政府機関内での汚職対策の継続を強調しています。", "官僚主義や行政機関での汚職は、中国の政府系機関の弱体化を引き起こしています。", "この数年、中国の政府高官の一部が金融汚職の疑いで逮捕されたにもかかわらず、職権の乱用や収賄は中国政府と共産党にとっての脅威となっています。" ] ]
[ [ "co", "co", "co", "co", "co" ] ]
[ [ [ "IRIBが16日月曜、報じたところによりますと、全人代は、年次会議の終わりに際し、中国の軍事予算を1300億ドルに増額することに同意しています。", "全人代はまた、政府の業務計画や、国家の経済・社会の発展計画、そして政府から出された予算案を可決しました。", "さらに、共産党をはじめとする政府機関内での汚職対策の継続を強調しています。", "官僚主義や行政機関での汚職は、中国の政府系機関の弱体化を引き起こしています。", "この数年、中国の政府高官の一部が金融汚職の疑いで逮捕されたにもかかわらず、職権の乱用や収賄は中国政府と共産党にとっての脅威となっています。" ] ] ]
[ [ "co" ] ]
[ "mono" ]
[ [ "about", "to", "send", "a", "text", "message", "with", "XD", "or", ":P", "in", "it", "tests", "it", "out", "in", "real", "life", "before", "sending", "657", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "about", "to", "send", "a", "text", "message", "with", "XD", "or", ":P", "in", "it", "tests", "it", "out", "in", "real", "life", "before", "sending", "657", "shares" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "No", "matter", "what", "you", "think", "about", "Hillary", "Clinton", "as", "the", "presidential", "primaries", "wind", "down,", "there", "is", "one", "undeniable", "fact", "that", "lingers", "in", "the", "background.", "Despite", "having", "had", "enormous", "advantages", "from", "the", "start", "of", "the", "campaign—no", "serious", "competition", "from", "within", "the", "party,", "solid", "support", "from", "national", "party", "leaders,", "a", "massive", "war", "chest", "and", "a", "nationwide", "grassroots", "network", "built", "over", "the", "course", "of", "decades", "in", "national", "politics—Clinton", "has", "struggled", "to", "put", "away", "a", "74-year-old", "Jewish", "socialist", "who", "has", "had", "almost", "no", "establishment", "support.", "Say", "whatever", "you", "want", "about", "Clinton’s", "lengthy", "résumé—and", "her", "credentials", "are", "indeed", "impressive—her", "performance", "this", "primary", "season", "is", "hardly", "indicative", "of", "a", "strong", "candidate.", "Advertisement:", "Indeed,", "Clinton", "concedes", "that", "she’s", "not", "a", "natural", "politician,", "lacking", "the", "charm", "of", "her", "husband", "or", "the", "charisma", "of", "Barack", "Obama.", "But", "what", "should", "be", "troubling", "to", "those", "who", "hope", "to", "see", "a", "Democrat", "in", "the", "White", "House", "next", "year", "is", "that", "Clinton", "seems", "to", "suggest", "that", "this", "weakness", "isn’t", "problematic,", "that", "her", "résumé", "and", "policy-wonk", "reputation", "will", "be", "enough", "to", "carry", "her", "on", "Election", "Day.", "Maybe.", "But", "don’t", "be", "too", "sure.", "Look", "no", "further", "than", "the", "2000", "election,", "when", "another", "policy-wonk", "Democrat", "with", "little", "charm", "or", "charisma—Al", "Gore—failed", "to", "ride", "his", "impressive", "credentials", "to", "the", "White", "House.", "Gore,", "a", "two-term", "vice", "president", "with", "prior", "lengthy", "service", "in", "both", "the", "Senate", "and", "House,", "lost", "to", "an", "anti-intellectual", "GOP", "opponent", "with", "no", "Washington", "experience.", "Sound", "familiar?", "Advertisement:", "Many", "Democrats", "are", "having", "difficulty", "accepting", "the", "fact", "that", "Clinton,", "despite", "her", "résumé,", "is", "a", "weak", "politician.", "In", "this", "state", "of", "denial,", "their", "defense", "of", "Clinton", "becomes", "aggressive,", "as", "they", "lash", "out", "at", "Bernie", "Sanders", "for", "staying", "in", "the", "race,", "implying", "that", "Clinton", "has", "earned", "the", "right", "to", "glide", "to", "the", "finish", "line", "unopposed.", "A", "prime", "example", "of", "this", "Clinton-entitlement", "mentality", "can", "be", "found", "in", "a", "recent", "Boston", "Globe", "column", "by", "Michael", "A.", "Cohen,", "entitled", "“Bernie", "Sanders", "declares", "war", "on", "reality.”", "Cohen", "insists", "that", "Sanders", "is", "“illogical,", "self-serving,", "hypocritical”", "and", "“intellectually", "dishonest”", "in", "trying", "win", "the", "nomination", "by", "swaying", "superdelegates", "away", "from", "Clinton.", "“Instead", "of", "coming", "to", "grips", "with", "the", "overwhelming", "evidence", "that", "Democratic", "primary", "voters", "prefer", "Hillary", "Clinton", "to", "be", "the", "party’s", "2016", "presidential", "nominee,”", "Cohen", "writes,", "“Sanders", "continues", "to", "create", "his", "own", "political", "reality.”", "Unfortunately,", "Cohen", "ignores", "the", "fact", "that", "the", "“overwhelming", "evidence”", "isn’t", "strong", "enough", "to", "allow", "Clinton", "to", "claim", "the", "nomination", "with", "pledged", "delegates", "alone.", "Had", "the", "evidence", "been", "so", "overwhelming,", "courting", "superdelegates", "would", "be", "irrelevant.", "Because", "Clinton", "has", "been", "far", "from", "dominating", "in", "the", "primaries", "and", "caucuses,", "the", "true", "“political", "reality”", "is", "that", "she", "will", "need", "superdelegate", "support", "to", "secure", "the", "nomination.", "Fortunately", "for", "Clinton,", "she", "appears", "to", "have", "the", "support", "of", "an", "overwhelming", "majority", "of", "superdelegates,", "but", "those", "allegiances", "can", "change", "up", "until", "the", "time", "of", "the", "convention", "vote,", "so", "Sanders", "is", "alive", "as", "long", "as", "the", "race", "comes", "down", "to", "a", "fight", "over", "them.", "Advertisement:", "Sanders", "has", "correctly", "criticized", "the", "superdelegate", "system", "as", "undemocratic,", "but", "there", "is", "nothing", "hypocritical", "or", "illogical", "in", "his", "continuing", "the", "fight", "within", "that", "system.", "To", "denounce", "the", "rules", "of", "a", "race", "does", "not", "preclude", "a", "candidate", "from", "competing", "within", "those", "flawed", "rules.", "With", "party", "insiders", "having", "disproportionate", "power", "as", "superdelegates,", "the", "system", "tips", "the", "scales", "strongly", "in", "Clinton’s", "favor,", "as", "Cohen", "surely", "knows,", "yet", "he", "still", "cries", "foul", "at", "Sanders", "pressing", "on", "within", "that", "system.", "Such", "specious", "arguments", "not", "only", "distract", "from", "the", "uncomfortable", "reality", "that", "Clinton", "is", "an", "extremely", "vulnerable", "candidate,", "they", "also", "fail", "to", "recognize", "that", "the", "Sanders", "campaign", "represents", "an", "agenda", "that", "is", "fundamentally", "different", "from", "Clinton’s.", "This", "is", "not", "a", "debate", "between", "two", "candidates", "with", "slight", "differences", "in", "substance", "or", "style,", "but", "of", "two", "vastly", "disparate", "philosophical", "views.", "Advertisement:", "Even", "if", "Sanders", "loses", "the", "nomination", "contest,", "which", "at", "this", "point", "appears", "likely,", "he", "represents", "an", "egalitarian,", "democratic", "vision", "that", "is", "highly", "skeptical", "of", "corporate", "power", "and", "the", "neoliberalism", "that", "Clinton", "represents.", "This", "agenda", "has", "resonated,", "fueling", "a", "surprisingly", "strong", "campaign", "that", "has", "energized", "many,", "especially", "younger", "voters,", "and", "those", "supporters", "expect", "that", "their", "message", "will", "be", "carried", "all", "the", "way", "to", "the", "convention.", "For", "Sanders,", "stopping", "the", "fight", "at", "this", "point", "would", "be", "senseless.", "Clinton", "herself", "has", "the", "tact", "to", "refrain", "from", "urging", "Sanders", "to", "exit.", "She", "instead", "is", "doing", "the", "smart", "thing", "by", "basically", "ignoring", "him", "and", "focusing", "on", "Donald", "Trump", "and", "the", "general", "election.", "Still,", "there", "can", "be", "no", "doubt", "that", "she", "would", "love", "to", "be", "in", "Trump’s", "position,", "having", "no", "opponents", "remaining", "with", "any", "mathematical", "chance", "of", "seizing", "the", "nomination.", "The", "fact", "that", "she’s", "not", "in", "such", "a", "position,", "and", "that", "her", "race", "for", "the", "Democratic", "nomination", "continues", "to", "be", "pestered", "by", "an", "old", "lefty", "who", "has", "served", "three", "decades", "in", "politics", "without", "even", "registering", "as", "a", "Democrat,", "should", "be", "a", "grave", "concern", "for", "her", "and" ], [ "her", "supporters.", "Although", "her", "credentials", "are", "strong,", "her", "candidacy", "isn’t—and", "blaming", "that", "on", "Sanders", "would", "be", "nothing", "but", "a", "form", "of", "denial." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "No", "matter", "what", "you", "think", "about", "Hillary", "Clinton", "as", "the", "presidential", "primaries", "wind", "down,", "there", "is", "one", "undeniable", "fact", "that", "lingers", "in", "the", "background.", "Despite", "having", "had", "enormous", "advantages", "from", "the", "start", "of", "the", "campaign—no", "serious", "competition", "from", "within", "the", "party,", "solid", "support", "from", "national", "party", "leaders,", "a", "massive", "war", "chest", "and", "a", "nationwide", "grassroots", "network", "built", "over", "the", "course", "of", "decades", "in", "national", "politics—Clinton", "has", "struggled", "to", "put", "away", "a", "74-year-old", "Jewish", "socialist", "who", "has", "had", "almost", "no", "establishment", "support.", "Say", "whatever", "you", "want", "about", "Clinton’s", "lengthy", "résumé—and", "her", "credentials", "are", "indeed", "impressive—her", "performance", "this", "primary", "season", "is", "hardly", "indicative", "of", "a", "strong", "candidate.", "Advertisement:", "Indeed,", "Clinton", "concedes", "that", "she’s", "not", "a", "natural", "politician,", "lacking", "the", "charm", "of", "her", "husband", "or", "the", "charisma", "of", "Barack", "Obama.", "But", "what", "should", "be", "troubling", "to", "those", "who", "hope", "to", "see", "a", "Democrat", "in", "the", "White", "House", "next", "year", "is", "that", "Clinton", "seems", "to", "suggest", "that", "this", "weakness", "isn’t", "problematic,", "that", "her", "résumé", "and", "policy-wonk", "reputation", "will", "be", "enough", "to", "carry", "her", "on", "Election", "Day.", "Maybe.", "But", "don’t", "be", "too", "sure.", "Look", "no", "further", "than", "the", "2000", "election,", "when", "another", "policy-wonk", "Democrat", "with", "little", "charm", "or", "charisma—Al", "Gore—failed", "to", "ride", "his", "impressive", "credentials", "to", "the", "White", "House.", "Gore,", "a", "two-term", "vice", "president", "with", "prior", "lengthy", "service", "in", "both", "the", "Senate", "and", "House,", "lost", "to", "an", "anti-intellectual", "GOP", "opponent", "with", "no", "Washington", "experience.", "Sound", "familiar?", "Advertisement:", "Many", "Democrats", "are", "having", "difficulty", "accepting", "the", "fact", "that", "Clinton,", "despite", "her", "résumé,", "is", "a", "weak", "politician.", "In", "this", "state", "of", "denial,", "their", "defense", "of", "Clinton", "becomes", "aggressive,", "as", "they", "lash", "out", "at", "Bernie", "Sanders", "for", "staying", "in", "the", "race,", "implying", "that", "Clinton", "has", "earned", "the", "right", "to", "glide", "to", "the", "finish", "line", "unopposed.", "A", "prime", "example", "of", "this", "Clinton-entitlement", "mentality", "can", "be", "found", "in", "a", "recent", "Boston", "Globe", "column", "by", "Michael", "A.", "Cohen,", "entitled", "“Bernie", "Sanders", "declares", "war", "on", "reality.”", "Cohen", "insists", "that", "Sanders", "is", "“illogical,", "self-serving,", "hypocritical”", "and", "“intellectually", "dishonest”", "in", "trying", "win", "the", "nomination", "by", "swaying", "superdelegates", "away", "from", "Clinton.", "“Instead", "of", "coming", "to", "grips", "with", "the", "overwhelming", "evidence", "that", "Democratic", "primary", "voters", "prefer", "Hillary", "Clinton", "to", "be", "the", "party’s", "2016", "presidential", "nominee,”", "Cohen", "writes,", "“Sanders", "continues", "to", "create", "his", "own", "political", "reality.”", "Unfortunately,", "Cohen", "ignores", "the", "fact", "that", "the", "“overwhelming", "evidence”", "isn’t", "strong", "enough", "to", "allow", "Clinton", "to", "claim", "the", "nomination", "with", "pledged", "delegates", "alone.", "Had", "the", "evidence", "been", "so", "overwhelming,", "courting", "superdelegates", "would", "be", "irrelevant.", "Because", "Clinton", "has", "been", "far", "from", "dominating", "in", "the", "primaries", "and", "caucuses,", "the", "true", "“political", "reality”", "is", "that", "she", "will", "need", "superdelegate", "support", "to", "secure", "the", "nomination.", "Fortunately", "for", "Clinton,", "she", "appears", "to", "have", "the", "support", "of", "an", "overwhelming", "majority", "of", "superdelegates,", "but", "those", "allegiances", "can", "change", "up", "until", "the", "time", "of", "the", "convention", "vote,", "so", "Sanders", "is", "alive", "as", "long", "as", "the", "race", "comes", "down", "to", "a", "fight", "over", "them.", "Advertisement:", "Sanders", "has", "correctly", "criticized", "the", "superdelegate", "system", "as", "undemocratic,", "but", "there", "is", "nothing", "hypocritical", "or", "illogical", "in", "his", "continuing", "the", "fight", "within", "that", "system.", "To", "denounce", "the", "rules", "of", "a", "race", "does", "not", "preclude", "a", "candidate", "from", "competing", "within", "those", "flawed", "rules.", "With", "party", "insiders", "having", "disproportionate", "power", "as", "superdelegates,", "the", "system", "tips", "the", "scales", "strongly", "in", "Clinton’s", "favor,", "as", "Cohen", "surely", "knows,", "yet", "he", "still", "cries", "foul", "at", "Sanders", "pressing", "on", "within", "that", "system.", "Such", "specious", "arguments", "not", "only", "distract", "from", "the", "uncomfortable", "reality", "that", "Clinton", "is", "an", "extremely", "vulnerable", "candidate,", "they", "also", "fail", "to", "recognize", "that", "the", "Sanders", "campaign", "represents", "an", "agenda", "that", "is", "fundamentally", "different", "from", "Clinton’s.", "This", "is", "not", "a", "debate", "between", "two", "candidates", "with", "slight", "differences", "in", "substance", "or", "style,", "but", "of", "two", "vastly", "disparate", "philosophical", "views.", "Advertisement:", "Even", "if", "Sanders", "loses", "the", "nomination", "contest,", "which", "at", "this", "point", "appears", "likely,", "he", "represents", "an", "egalitarian,", "democratic", "vision", "that", "is", "highly", "skeptical", "of", "corporate", "power", "and", "the", "neoliberalism", "that", "Clinton", "represents.", "This", "agenda", "has", "resonated,", "fueling", "a", "surprisingly", "strong", "campaign", "that", "has", "energized", "many,", "especially", "younger", "voters,", "and", "those", "supporters", "expect", "that", "their", "message", "will", "be", "carried", "all", "the", "way", "to", "the", "convention.", "For", "Sanders,", "stopping", "the", "fight", "at", "this", "point", "would", "be", "senseless.", "Clinton", "herself", "has", "the", "tact", "to", "refrain", "from", "urging", "Sanders", "to", "exit.", "She", "instead", "is", "doing", "the", "smart", "thing", "by", "basically", "ignoring", "him", "and", "focusing", "on", "Donald", "Trump", "and", "the", "general", "election.", "Still,", "there", "can", "be", "no", "doubt", "that", "she", "would", "love", "to", "be", "in", "Trump’s", "position,", "having", "no", "opponents", "remaining", "with", "any", "mathematical", "chance", "of", "seizing", "the", "nomination.", "The", "fact", "that", "she’s", "not", "in", "such", "a", "position,", "and", "that", "her", "race", "for", "the", "Democratic", "nomination", "continues", "to", "be", "pestered", "by", "an", "old", "lefty", "who", "has", "served", "three", "decades", "in", "politics", "without", "even", "registering", "as", "a", "Democrat,", "should", "be", "a", "grave", "concern", "for", "her", "and" ] ], [ [ "her", "supporters.", "Although", "her", "credentials", "are", "strong,", "her", "candidacy", "isn’t—and", "blaming", "that", "on", "Sanders", "would", "be", "nothing", "but", "a", "form", "of", "denial." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Kadokawa", "Games", "has", "delayed", "God", "Wars:", "Future", "Past", "from", "its", "previously", "announced", "April", "13", "release", "date", "in", "Japan", "to", "June", "22.", "According", "to", "the", "company,", "while", "the", "company", "has", "been", "working", "in", "improve", "the", "game", "in", "response", "to", "user", "feedback", "from", "the", "February-released", "“The", "Beginning”", "demo,", "a", "little", "more", "time", "is", "necessary", "to", "resolve", "the", "bugs", "that", "have", "popped", "up", "as", "a", "result", "of", "those", "improvements.", "They", "are", "also", "making", "final", "adjustments", "on", "the", "title.", "God", "Wars:", "Future", "Past", "is", "currently", "planned", "for", "release", "on", "PlayStation", "4", "and", "PS", "Vita", "in", "North", "America", "on", "March", "28", "and", "in", "Europe", "on", "March", "31.", "Given", "that", "the", "Japanese", "delay", "is", "related", "to", "development,", "it", "will", "likely", "be", "delayed", "in", "western", "territories", "as", "well." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Kadokawa", "Games", "has", "delayed", "God", "Wars:", "Future", "Past", "from", "its", "previously", "announced", "April", "13", "release", "date", "in", "Japan", "to", "June", "22.", "According", "to", "the", "company,", "while", "the", "company", "has", "been", "working", "in", "improve", "the", "game", "in", "response", "to", "user", "feedback", "from", "the", "February-released", "“The", "Beginning”", "demo,", "a", "little", "more", "time", "is", "necessary", "to", "resolve", "the", "bugs", "that", "have", "popped", "up", "as", "a", "result", "of", "those", "improvements.", "They", "are", "also", "making", "final", "adjustments", "on", "the", "title.", "God", "Wars:", "Future", "Past", "is", "currently", "planned", "for", "release", "on", "PlayStation", "4", "and", "PS", "Vita", "in", "North", "America", "on", "March", "28", "and", "in", "Europe", "on", "March", "31.", "Given", "that", "the", "Japanese", "delay", "is", "related", "to", "development,", "it", "will", "likely", "be", "delayed", "in", "western", "territories", "as", "well." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "When", "buying", "BLOGRIOT.COM,", "your", "transaction", "is", "securely", "processed", "by", "Stripe,", "a", "licensed", "payment", "company.", "Make", "an", "offer", "Fill", "out", "your", "offer", "for", "BLOGRIOT.COM", "below,", "to", "get", "in", "touch", "with", "the", "owner", "of", "this", "domain", "name." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "When", "buying", "BLOGRIOT.COM,", "your", "transaction", "is", "securely", "processed", "by", "Stripe,", "a", "licensed", "payment", "company.", "Make", "an", "offer", "Fill", "out", "your", "offer", "for", "BLOGRIOT.COM", "below,", "to", "get", "in", "touch", "with", "the", "owner", "of", "this", "domain", "name." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "i", "use", "a", "reddit", "app", "on", "my", "phone", "so", "all", "the", "links", "are", "blue", "on", "my", "computer", "127", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "i", "use", "a", "reddit", "app", "on", "my", "phone", "so", "all", "the", "links", "are", "blue", "on", "my", "computer", "127", "shares" ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono", "mono", "mono" ]
[ [ ">", "import", "Data.Char", ">", "type", "Field", "=", "Int", "->", "Int", "->", "Int", ">", "data", "Grid", "=", "Grid", "Int", "Int", "Field", "Field", ">", "instance", "Eq", "Grid", ">", "instance", "Show", "Grid", "where", ">", "show", "(Grid", "w", "h", "f)", "=", "concat", ">", "[[digit", "(f", "x", "y)", "|", "x", "<-", "[0..w-1]]", "++", "\"", "\"", "|", "y", "<-", "[0..h-1]]", ">", "digit", "0", "=", "'.'", ">", "digit", "n", "=", "chr", "(48+n)", ">", "instance", "Num", "Grid", "where", ">", "Grid", "w0", "h0", "f0", "+", "Grid", "w1", "h1", "f1", "=", "Grid", ">", "(w0", "`max`", "w1)", "(h0", "`max`", "h1)", ">", "(\\x", "y", "->", "f0", "x", "y", "+", "f1", "x", "y)", "count", "::", "Grid", "->", "Int", "f", "g", "count", "f", "+", "count", "g", "==", "count", "(f+g)", "count", ">", "gsum", "(Grid", "w", "h", "f)", "=", "sum", "[f", "x", "y", "|", "x", "<-", "[0..w-1],", "y", "<-", "[0..h-1]]", ">", "point", "x", "y", "=", "Grid", "(x+1)", "(y+1)", ">", "(\\x0", "y0", "->", "if", "(x0,", "y0)", "==", "(x,y)", "then", "1", "else", "0)", ">", "circle", "x", "y", "r", "=", "Grid", "(x+r+1)", "(y+r+1)", ">", "(\\x0", "y0", "->", "if", "(x-x0)^2+(y-y0)^2<r^2", "then", "1", "else", "0)", ">", "test1", "=", "circle", "10", "10", "5+circle", "7", "13", "4+point", "5", "5+point", "9", "12", ">", "test2", "=", "gsum", "test1", "*Main>", "test1", "................", "................", "................", "................", "................", ".....1..........", "........11111...", ".......1111111..", "......111111111.", "......111111111.", ".....1222211111.", "....11222221111.", "....11222321111.", "....1112222111..", "....111122211...", "....1111111.....", ".....11111......", "................", "*Main>", "test2", "116", ">", "scale", "n", "(Grid", "w", "h", "f)", "=", "Grid", "(w*n)", "(h*n)", ">", "(\\x", "y", "->", "f", "(x", "`div`", "n)", "(y", "`div`", "n))", "count", "(n", "`scale`", "f)", "=", "count", "f", "gsum", "gsum", "(n", "`scale`", "f)", "=", "n^2", "*", "gsum", "f", "^", "Field", ">", "data", "EGrid", "=", "EGrid", "{", ">", "eWidth::Int,", "eHeight::Int,", ">", "faces::Field,", "hedges::Field,", "vedges::Field,", "vertices::Field", ">", "}", "(0,0)", ">", "g2e", "(Grid", "w", "h", "f)", "=", "EGrid", "w", "h", ">", "f", ">", "(\\x", "y", "->", "f", "(x-1)", "y", "`max`", "f", "x", "y)", ">", "(\\x", "y", "->", "f", "x", "(y-1)", "`max`", "f", "x", "y)", ">", "(\\x", "y", "->", "f", "(x-1)", "(y-1)", "`max`", "f", "(x-1)", "y", "`max`", "f", "x", "(y-1)", "`max`", "f", "x", "y)", ">", "fsum", "(EGrid", "w", "h", "f", "_", "_", "_)", "=", "gsum", "(Grid", "w", "h", "f)", ">", "esum", "(EGrid", "w", "h", "_", "e", "f", "_)", "=", "gsum", "(Grid", "(w+1)", "h", "e)+gsum", "(Grid", "w", "(h+1)", "f)", ">", "vsum", "(EGrid", "w", "h", "_", "_", "_", "v)", "=", "gsum", "(Grid", "(w+1)", "(h+1)", "v)", ">", "measure", "a", "b", "c", "g", "=", "let", "e", "=", "g2e", "g", "in", "a*vsum", "e+b*esum", "e+c*fsum", "e", "gsum", ">", "area", "=", "measure", "0", "0", "1", "((n^2)", "*).", "area", "=", "area.", "scale", "n", "a", "b", "c", "measure", "mystery_property1", "=", "measure", "a", "b", "c", "((n^1)", "*).", "mystery_property1", "=", "mystery_property1.", "scale", "n", "mystery_property1" ], [ "a", "b", "c", "mystery_property1", "a", "b", "c", "measure", "mystery_property2", "=", "measure", "a", "b", "c", "((n^0)", "*).", "mystery_property2", "=", "mystery_property2.", "scale", "n", "mystery_property2", "scale", "gscale", "EGrid", "g2e.", "(scale", "n)", "==", "gscale", "n.", "g2e", "mystery_property2", "measure", "1", "0", "0", "$", "point", "0", "0", "measure", "1", "0", "0", "$", "2", "`scale`", "point", "0", "0", "measure", "1", "0", "0", "$", "3", "`scale`", "point", "0", "0", "4a+", "4b+", "c", "=", "x", "9a+12b+4c", "=", "2x", "16a+24b+9c", "=", "3x", "measure", "0", "1", "(-2)", "measure", "0", "1", "(-2)", "4a+", "4b+", "c", "=", "x", "9a+12b+4c", "=", "x", "16a+24b+9c", "=", "x", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", ">", "euler", "=", "measure", "1", "(-1)", "1", "euler", "euler", ">", "test3", "=", "euler", "test1", "test1", "area", "measure", "The", "problem", "I", "ultimately", "want", "to", "solve,", "and", "its", "solution,", "is", "described", "in", "the", "paper", "Target", "Enumeration", "via", "Euler", "Characteristic", "Integrals.", "My", "goal", "here", "is", "to", "show", "how", "to", "implement", "that", "solution", "on", "a", "computer", "and", "make", "it", "accessible", "to", "a", "wider", "audience.Suppose", "we", "have", "a", "set", "of", "targets", "we", "want", "to", "count.", "This", "could", "be", "anything", "from", "enemy", "tanks", "rolling", "over", "the", "plains", "to", "electronically", "tagged", "wildlife", "roaming", "the", "countryside.", "Each", "target", "has", "a", "region", "of", "influence", "which", "might", "simply", "be", "circular", "in", "shape,", "or", "might", "be", "more", "complex", "and", "depend", "on", "the", "target.", "Now", "suppose", "that", "we", "have", "a", "high", "density", "of", "sensors", "scattered", "over", "our", "domain", "and", "that", "each", "sensor", "can", "tell", "us", "how", "many", "regions", "of", "influence", "it", "lies", "in.", "Roughly", "speaking,", "each", "sensor", "counts", "how", "many", "targets", "are", "nearby.", "How", "do", "we", "compute", "how", "many", "targets", "we", "have", "in", "total?Here's", "an", "illustration:There", "are", "four", "targets.", "The", "region", "of", "influence", "for", "each", "one", "is", "coloured", "making", "it", "easy", "to", "see", "which", "region", "is", "which.", "I've", "labelled", "each", "region", "with", "an", "integer", "showing", "how", "many", "targets", "can", "be", "detected", "in", "that", "region.", "The", "idea", "is", "that", "we'd", "have", "a", "very", "dense", "scattering", "of", "sensors", "in", "our", "domain,", "each", "sensor", "reporting", "an", "integer.", "In", "effect", "we'd", "be", "getting", "an", "image", "like", "a", "rasterised", "version", "of", "that", "picture.", "But", "we", "wouldn't", "be", "getting", "the", "convenient", "colours,", "just", "an", "integer", "per", "pixel.At", "first", "it", "seems", "like", "a", "trivial", "problem.", "The", "sensors", "can", "all", "count,", "and", "if", "every", "target", "is", "in", "range", "of", "a", "sensor,", "every", "target", "will", "be", "counted.", "But", "we", "can't", "simply", "add", "the", "numbers", "from", "all", "of", "the", "sensors", "as", "many", "sensors", "will", "be", "in", "the", "domain", "of", "influence", "of", "the", "same", "target.", "If", "we", "sum", "all", "of", "the", "numbers", "we'll", "be", "counting", "each", "target", "many", "times", "over.", "We", "need", "to", "be", "able", "to", "subtract", "off", "the", "targets", "that", "are", "counted", "twice.", "But", "some", "targets", "will", "be", "counted", "three", "times", "and", "so", "on.", "And", "how", "do", "we", "tell", "when", "a", "target", "has", "been", "counted", "twice", "when", "all", "we", "have", "are", "counts?We'll", "make", "one", "simplifying", "assumption", "in", "solving", "this", "problem:", "that", "the", "regions", "of", "influence", "are", "simply", "connected.", "In", "other", "words,", "they", "are", "basically", "some", "kind", "of", "shape", "that", "doesn't", "have", "holes", "in", "it.", "That", "could", "mean", "anything", "from", "a", "square", "or", "disk", "to", "a", "shape", "like", "the", "letter", "'W'.", "But", "it", "excludes", "shapes", "like", "annuli", "or", "the", "letter", "'B'.", "If", "we", "make", "this", "assumption", "then", "we", "can", "solve", "this", "problem", "with", "a", "very", "simple", "algorithm", "that", "will", "work", "in", "almost", "all", "cases.", "In", "fact,", "the", "only", "time", "it", "fails", "will", "be", "situations", "where", "no", "algorithm", "could", "possibly", "work.", "But", "there's", "a", "little", "ground", "to", "cover", "before", "getting", "to", "the", "solution.We'll", "make", "another", "simplifying", "assumption", "for", "now.", "That", "the", "sensors", "are", "arranged", "in", "a", "rectangular", "grid.", "So", "the", "data", "we", "get", "back", "from", "the", "sensors", "will", "be", "a", "grid", "filled", "with", "integers.", "That", "essentially", "turns", "our", "problem", "into", "one", "of", "image", "processing", "and", "we", "can", "think", "of", "sensor", "values", "as", "pixels.", "Here's", "a", "picture", "where", "I've", "drawn", "one", "domain", "of", "influence", "and", "I've", "indicated", "the", "values", "returned", "for", "three", "of", "the", "sensors.So", "lets", "assume", "the", "sensors", "have", "coordinates", "given", "by", "pairs", "of", "integers", "and", "that", "they", "return", "integer", "counts.", "The", "state", "of", "all", "the", "sensors", "can", "be", "represented", "by", "a", "function", "of", "this", "type:We'll", "assume", "that", "we", "get", "zero", "if", "we", "try", "to", "read", "from", "beyond", "our", "domain.", "We", "can", "represent", "a", "grid", "of", "sensors,", "including", "the", "grid's", "width", "and", "height,", "using:For", "efficiency", "something", "of", "typeought", "to", "read", "data", "from", "an", "array" ], [ ",", "but", "I'll", "not", "be", "assuming", "arrays", "here.We", "can", "define", "display", "and", "addition", "of", "two", "grids:Ourultimate", "goal", "is", "to", "define", "some", "kind", "of", "count", "function", "with", "signature:Now", "suppose", "the", "functiongives", "the", "counts", "corresponding", "to", "one", "set", "of", "targets", "andis", "the", "count", "corresponding", "to", "another.", "If", "the", "region", "of", "influence", "of", "these", "two", "sets", "of", "targets", "is", "separated", "by", "at", "least", "one", "'pixel'", "then", "it", "should", "be", "clear", "thatSo", "at", "least", "approximately,is", "additive.", "We", "also", "need", "it", "to", "be", "translation", "invariant.", "There's", "only", "one", "function", "that", "has", "these", "properties,", "summing", "up", "the", "values", "at", "all", "pixels:We", "can", "implement", "functions", "to", "make", "some", "example", "grids:And", "now", "we", "can", "build", "and", "display", "some", "examples:Here's", "a", "typical", "output:It", "should", "be", "pretty", "clear", "that", "this", "doesn't", "count", "the", "number", "of", "targets.", "So", "how", "can", "we", "implement", "something", "additive", "and", "yet", "count", "targets?Another", "operation", "we", "can", "perform", "on", "grids", "is", "scale", "them.", "Here's", "an", "implementation", "of", "scaling", "a", "grid:Scaling", "up", "an", "`image'", "shouldn't", "change", "the", "number", "of", "targets", "detected.", "It", "should", "only", "correspond", "to", "the", "same", "number", "of", "targets", "with", "double-sized", "regions", "of", "influence.", "So", "we'd", "also", "like", "the", "following", "property:It's", "easy", "to", "see", "that", "thatactually", "has", "the", "following", "property", "for", "n>0:is", "the", "power", "function.", "For", "some", "reason", "lhs2TeX", "displays", "it", "as", "an", "up", "arrow.)", "These", "requirements", "are", "pretty", "tough", "to", "meet", "with", "an", "additive", "operation.", "But", "there's", "an", "amazing", "transformation", "we", "can", "perform", "on", "the", "data", "first.", "Instead", "of", "working", "on", "a", "grid", "with", "one", "value", "for", "each", "pixel", "we'll", "also", "store", "values", "for", "the", "'edges'", "between", "pixels", "and", "for", "the'vertices'", "at", "the", "corners", "of", "pixels.So", "lets", "define", "a", "new", "kind", "of", "grid", "to", "be", "a", "tuple", "offunctions,", "one", "for", "faces", "(ie.", "the", "pixels),", "one", "for", "horizontal", "edges,", "one", "for", "vertical", "edges,", "and", "one", "for", "vertices.The", "lower", "left", "vertex", "isbut", "we", "need", "to", "add", "an", "extra", "row", "and", "column", "of", "vertices", "on", "the", "right.", "Similarly", "we'll", "need", "an", "extra", "row", "and", "an", "extra", "column", "of", "edges.", "We", "can", "now", "`resample'", "our", "original", "grid", "onto", "one", "of", "these", "new", "style", "grids:I'm", "using", "the", "rule", "that", "the", "value", "along", "an", "edge", "will", "be", "the", "maximum", "of", "the", "values", "on", "the", "two", "impinging", "faces.", "Similarly,", "the", "vertices", "acquire", "the", "maximum", "of", "the", "four", "faces", "they", "meet.I'll", "try", "to", "illustrate", "that", "here:I", "hope", "you", "can", "see,", "from", "the", "placement", "of", "the", "labels,", "how", "I've", "attached", "values", "to", "edges", "and", "vertices", "as", "well", "as", "faces.We", "now", "have", "a", "bit", "more", "freedom.", "We", "have", "three", "different", "types", "of", "sum", "we", "can", "carry", "out:(We", "could", "sum", "over", "horizontal", "and", "vertical", "edges", "separately", "too,", "but", "if", "we", "did", "that", "then", "a", "90", "degree", "rotation", "would", "give", "a", "different", "target", "count.)Now", "we", "can", "define", "a", "measurement", "function", "that", "takes", "three", "`weights'", "and", "gives", "us", "back", "a", "weighted", "sum:We", "can", "reproduce", "thefunction", "asTry", "some", "examples", "to", "test", "thatNow", "I", "can", "leave", "you", "with", "some", "challenges:1.", "Find", "some", "suitable", "argumentsandtoso", "that", "we", "get:I'll", "let", "you", "assume", "that", "there", "is", "some", "choice", "of", "values", "that", "works.(Hint:", "you", "just", "need", "to", "try", "applyingto", "a", "few", "scalings", "of", "some", "chosen", "shape.", "You'll", "quickly", "find", "some", "simultaneous", "equations", "inandto", "solve.", "Solve", "them.)2.", "Can", "you", "find", "a", "simple", "geometric", "interpretation", "for?", "Assume", "that", "the", "original", "input", "grid", "simply", "consists", "of", "zeros", "and", "ones,", "so", "that", "it's", "a", "binary", "image.", "It", "shouldn't", "be", "hard", "to", "find", "a", "good", "interpretation.", "It's", "a", "little", "harder", "if", "it", "isn't", "a", "binary", "image", "so", "don't", "worry", "too", "much", "about", "that", "case.3.", "Now", "find", "some", "suitable", "argumentsandtoso", "that", "we", "get:4.", "Can", "you", "find", "a", "simple", "interpretation", "for", "binary", "images?", "You", "might", "think", "you", "have", "it", "immediately", "so", "work", "hard", "to", "find", "counterexamples.", "Have", "a", "solid", "interpretation", "yet?", "And", "can", "you", "extend", "it", "to", "images", "that", "consist", "of", "more", "general", "integers?5.", "Optimise", "the", "code", "forassuming", "the", "image", "is", "binary", "and", "that", "the", "input", "is", "on", "a", "2D", "array.", "Ultimately", "you", "should", "get", "some", "code", "that", "walks", "a", "2D", "array", "doing", "something", "very", "simple", "at", "each", "pixel.", "Can", "you", "understand", "how", "it's", "managing", "to", "compute", "something", "that", "fits", "the", "interpretation", "you", "gave?6.", "Define", "a", "version", "ofcalledthat", "works", "ons.", "Among", "other", "things", "we", "should", "expect:and", "that", "the", "invariance", "properties", "of", "the", "mystery", "properties", "should", "hold", "with", "respect", "to", "gscale.I'll", "answer", "most", "of", "these", "questions", "in", "my", "next", "post.", "If", "you", "findyou've", "rediscovered", "one", "of", "the", "deepest", "notions", "in", "mathematics.", "Something", "that", "appears", "in", "fields", "as", "diverse", "as", "combinatorics,", "algebraic", "geometry,", "algebraic", "topology,", "graph", "theory,", "group", "theory,", "geometric", "probability,", "fluid", "dynamics,", "and,", "of", "course,", "image", "processing.Let's", "start", "with", "exercise", "1", "from", "my", "previous", "post.", "I", "allowed", "you", "to", "assume", "there", "was", "a", "solution.", "Knowing", "this", "we", "only", "need", "to", "try", "scaling", "up", "one", "shape.", "Here", "are", "three", "scalings", "of", "a", "single", "pixel:For", "the", "1x1", "square", "we", "have:", "1", "face,", "4", "edges,", "4", "vertices.For", "the", "2x2", "square", "we", "have" ], [ ":", "4", "faces,", "12", "edges,", "9", "vertices.For", "the", "3x3", "square", "we", "have:", "9", "faces,", "24", "edges,", "16", "vertices.(If", "you", "don't", "feel", "like", "counting", "these", "yourself", "you", "can", "use", "code", "like:and", "so", "on.So", "now", "we", "have", "some", "equations:We", "find", "a=0,", "c=-2b.", "I'll", "pick", "b", "=", "1,", "c", "=", "-2.", "There's", "a", "straightfoward", "interpretation", "offor", "binary", "images.", "It", "computes", "half", "of", "the", "perimeter,", "the", "semi-perimeter.", "There's", "a", "nice", "way", "to", "see", "this.", "We", "can", "try", "to", "count", "the", "number", "of", "edges", "in", "a", "shape", "starting", "from", "the", "number", "of", "faces", "in", "it.", "You", "can", "think", "of", "each", "face", "as", "being", "surrounded", "by", "4", "\"half-thickness\"", "edges.", "Where", "two", "faces", "meet", "we", "get", "a", "full", "thickness", "edge,", "so", "using", "half", "the", "number", "of", "faces", "counts", "internal", "edges", "correctly.", "But", "around", "the", "border", "of", "a", "shape", "we", "are", "left", "with", "contributions", "from", "only", "a", "face", "on", "one", "side.", "So", "we're", "only", "counting", "the", "perimeter", "edges", "by", "half.", "We", "get", "a", "shortfall", "of", "the", "semi-perimeter.", "Working", "backwards", "tells", "us", "how", "to", "compute", "the", "semi-perimeter", "from", "the", "total", "number", "of", "edges", "and", "faces.For", "more", "general", "images,", "not", "just", "binary", "ones,", "we", "can", "roughly", "think", "ofas", "computing", "the", "sum", "of", "the", "semi-perimeters", "of", "all", "of", "the", "isocontours", "of", "our", "image.The", "interesting", "case", "is", "now", "exercise", "3.", "This", "time", "our", "equation", "is:Now", "we", "get", "a", "solution", "a", "=", "1,", "b", "=", "-1,", "c", "=", "1.", "If", "you", "try", "computing", "this", "for", "a", "few", "shapes", "it", "looks", "like", "it's", "counting", "the", "number", "of", "connected", "components", "of", "a", "binary", "image.", "However,", "once", "you", "realise", "the", "possibility", "of", "some", "holes", "in", "your", "image", "you", "find", "that", "it", "always", "turns", "out", "to", "be", "the", "total", "number", "of", "connected", "components", "minus", "the", "total", "number", "of", "holes.Here's", "an", "example.", "Treat", "this", "as", "a", "single", "complete", "image:It", "has", "two", "components", "and", "one", "hole", "so", "we", "expectto", "give", "us", "1.", "We", "can", "count:14", "faces42", "edges29", "verticesGiving", "29-42+14", "=", "1.I'm", "not", "sure", "which", "is", "the", "easiest", "proof", "that", "vertices-edges+faces", "counts", "the", "number", "of", "components", "minus", "the", "number", "of", "holes.", "One", "approach", "is", "this:", "we", "only", "need", "to", "consider", "one", "connected", "component", "at", "a", "time.", "Remove", "its", "holes.", "Now", "build", "up", "the", "shape", "one", "pixel", "at", "a", "time", "starting", "with", "one", "pixel", "and", "ensuring", "that", "you", "have", "a", "hole-free", "shape", "at", "each", "stage.", "It's", "not", "hard", "to", "enumerate", "all", "of", "the", "possible", "ways", "you", "can", "add", "one", "pixel", "to", "an", "existing", "shape", "and", "show", "that", "each", "such", "addition", "leavesunchanged.", "If", "you", "now", "make", "a", "single", "pixel", "hole", "in", "your", "shape", "you'll", "see", "that", "it", "lowersby", "1.", "If", "you", "now", "continue", "to", "add", "pixels", "to", "the", "hole,", "in", "a", "way", "that", "doesn't", "change", "the", "number", "of", "holes,", "you'll", "see", "thatremains", "unchanged", "again.computes", "what", "is", "known", "as", "the", "Euler", "characteristic", "of", "a", "shape.", "I", "talked", "a", "little", "about", "this", "in", "one", "context", "earlier", "and", "showed", "how", "to", "compute", "it", "in", "another", "context", "here.", "The", "Euler", "characteristic", "is", "a", "topological", "invariant", "of", "a", "shape", "in", "the", "sense", "that", "a", "rubber", "sheet", "deformation", "of", "a", "shape", "leaves", "the", "number", "of", "holes", "and", "the", "number", "of", "components", "unchanged.The", "above", "description", "shows", "that", "the", "Euler", "characteristic", "is", "particularly", "easy", "to", "compute.", "It", "simply", "requires", "a", "map-reduce", "operation", "over", "the", "entire", "grid.", "But", "what", "about", "the", "separate", "terms:", "the", "number", "of", "components", "and", "the", "number", "of", "holes?", "These", "seem", "like", "simpler", "notions", "and", "you", "might", "expect", "them", "to", "be", "just", "as", "easy", "to", "compute.", "Actually", "they", "are", "harder", "to", "compute.", "Compare", "also", "with", "flood", "fill", "algorithms", "which", "solve", "a", "related", "problem.", "Minsky", "and", "Papert", "show", "in", "their", "book", "Perceptrons", "that", "any", "topological", "invariant", "that", "can", "be", "learnt", "by", "a", "one", "layer", "neural", "network", "(with", "certain", "resonable", "restrictions)", "must", "be", "a", "function", "of", "the", "Euler", "characteristic.", "I", "find", "it", "quite", "amazing", "that", "this", "notion", "from", "topology", "is", "connected", "(no", "pun", "intended)", "to", "learnability.We", "can", "defineI", "have", "sketched", "an", "argument", "thatcounts", "#components-#holes.", "If", "we", "assume", "that", "each", "of", "our", "connected", "components", "has", "no", "holes", "then", "it", "counts", "the", "number", "of", "components.", "But", "here's", "a", "neat", "thing:", "if", "we", "*add*", "two", "images", "that", "contain", "strictly", "overlapping", "shapes", "(ie.", "not", "just", "touching", "each", "other", "along", "their", "boundaries)", "then", "because", "of", "additivity,will", "still", "count", "the", "number", "of", "shapes.", "In", "other", "words,", "if", "you", "did", "the", "exercises", "then", "you", "solved", "the", "target", "enumeration", "problem.", "It's", "pretty", "miraculous.", "You", "could", "splat", "down", "thousands", "of", "geometric", "shapes", "into", "an", "image.", "They", "can", "overlap", "as", "much", "as", "you", "like.", "But", "as", "long", "as", "they", "don't", "touch", "along", "a", "boundary", "you", "can", "still", "compute", "the", "total", "number", "of", "shapes.", "If", "two", "shapes", "do", "touch", "along", "a", "common", "boundary", "then", "no", "algorithm", "can", "work,", "after", "all", "they'll", "be", "indistinguishable", "from", "a", "single", "connected", "shape.", "For", "a", "quick", "example,", "notice", "howrecovers", "thatis", "the", "sum", "of", "4", "shapes", "that", "don't", "touch.Consider", "our", "original", "measurement.", "This", "sums", "the", "values", "at", "each", "pixel.", "It", "is", "a", "numerical", "approximation", "to", "the", "integral", "of", "a", "function", "sampled" ], [ "at", "each", "pixel.", "Likewise", "each", "of", "thefunctions", "is", "numerical", "approximation", "to", "a", "generalised", "type", "of", "integral.", "The", "original", "paper", "uses", "these", "integrals", "to", "solve", "its", "problem.", "I", "have", "simply", "used", "a", "discrete", "version.I", "apologise", "for", "only", "sketching", "proofs.", "It", "takes", "considerably", "more", "work", "to", "provide", "rigorous", "proofs.", "But", "I", "encourage", "you", "to", "experiment", "with", "the", "code", "and", "attempt", "to", "find", "counterexamples.", "The", "history", "of", "the", "Euler", "characteristic", "is", "itself", "characteristed", "by", "a", "kind", "of", "back", "and", "forth", "between", "attempted", "proofs", "and", "counterexamples", "than", "in", "a", "strange", "way", "mirrors", "the", "innocent", "looking", "definition:", "vertices-edges+faces.By", "the", "way,", "some", "people", "have", "propsed", "that", "the", "Euler", "characteristic", "is", "a", "kind", "of", "generalisation", "of", "the", "idea", "of", "counting.", "It", "shares", "many", "properties", "with", "the", "usual", "notion", "of", "cardinality.One", "last", "thing:", "I", "have", "implicitly", "shown", "that", "target", "counting", "is", "learnable", "by", "a", "certain", "type", "of", "one-layer", "neural", "network.And", "thanks", "to", "@alpheccar", "for", "pointing", "out", "the", "original", "target", "enumeration", "paper.I'm", "repeating", "this", "as", "a", "possibly", "apocryphal", "story", "I", "have", "heard", "from", "other", "parties:", "Minsky", "and", "Papert", "demonstrated", "that", "the", "only", "learnable", "topological", "invariants", "for", "single", "layer", "network", "are", "functions", "of", "the", "Euler", "characteristic.", "In", "particular,", "they", "demonstrated", "the", "unlearnability", "of", "connectedness.", "This", "was", "a", "precisely", "stated", "no-go", "theorem", "that", "discouraged", "and", "slowed", "investment", "in", "neural", "network", "research", "for", "many", "years", "and", "helped", "contribute", "to", "the", "AI", "Winter.", "Is", "there", "a", "good", "historical", "book", "on", "this", "period", "of", "AI", "research?" ] ]
[ [ "en", "en", "de", "de", "de", "de", "de", "de", "fr", "fr", "ro", "ro", "ro", "co", "co", "co", "co", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "co", "en", "en", "en", "es", "es", "es", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "fr", "fr", "fr", "fr", "fr", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "co", "co", "co", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "pt", "pt", "pt", "pt", "pt", "ro", "ro", "ro", "ro", "it", "de", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "ro", "ro", "ro", "ro", "ro", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "es", "es", "es", "es", "es", "es", "ro", "ro", "ro", "ro", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "co", "co", "co", "pt", "pt", "en", "nl", "nl", "de", "de", "de", "de", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "de", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "ro", "ro", "ro", "en", "en", "co", "co", "co", "co", "fr", "ro", "ro", "en", "en", "en", "co", "co", "co", "co", "fr", "fr", "ro", "ro", "ro", "ro", "ro", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "ro", "ro", "fr", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "de", "ro", "ro", "ro", "ro", "de", "de", "de", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ ">", "import", "Data.Char", ">", "type", "Field", "=", "Int", "->", "Int", "->", "Int", ">", "data", "Grid", "=", "Grid", "Int", "Int", "Field", "Field", ">", "instance", "Eq", "Grid", ">", "instance", "Show", "Grid", "where", ">", "show", "(Grid", "w", "h", "f)", "=", "concat", ">", "[[digit", "(f", "x", "y)", "|", "x", "<-", "[0..w-1]]", "++", "\"", "\"", "|", "y", "<-", "[0..h-1]]", ">", "digit", "0", "=", "'.'", ">", "digit", "n", "=", "chr", "(48+n)", ">", "instance", "Num", "Grid", "where", ">", "Grid", "w0", "h0", "f0", "+", "Grid", "w1", "h1", "f1", "=", "Grid", ">", "(w0", "`max`", "w1)", "(h0", "`max`", "h1)", ">", "(\\x", "y", "->", "f0", "x", "y", "+", "f1", "x", "y)", "count", "::", "Grid", "->", "Int", "f", "g", "count", "f", "+", "count", "g", "==", "count", "(f+g)", "count", ">", "gsum", "(Grid", "w", "h", "f)", "=", "sum", "[f", "x", "y", "|", "x", "<-", "[0..w-1],", "y", "<-", "[0..h-1]]", ">", "point", "x", "y", "=", "Grid", "(x+1)", "(y+1)", ">", "(\\x0", "y0", "->", "if", "(x0,", "y0)", "==", "(x,y)", "then", "1", "else", "0)", ">", "circle", "x", "y", "r", "=", "Grid", "(x+r+1)", "(y+r+1)", ">", "(\\x0", "y0", "->", "if", "(x-x0)^2+(y-y0)^2<r^2", "then", "1", "else", "0)", ">", "test1", "=", "circle", "10", "10", "5+circle", "7", "13", "4+point", "5", "5+point", "9", "12", ">", "test2", "=", "gsum", "test1", "*Main>", "test1", "................", "................", "................", "................", "................", ".....1..........", "........11111...", ".......1111111..", "......111111111.", "......111111111.", ".....1222211111.", "....11222221111.", "....11222321111.", "....1112222111..", "....111122211...", "....1111111.....", ".....11111......", "................", "*Main>", "test2", "116", ">", "scale", "n", "(Grid", "w", "h", "f)", "=", "Grid", "(w*n)", "(h*n)", ">", "(\\x", "y", "->", "f", "(x", "`div`", "n)", "(y", "`div`", "n))", "count", "(n", "`scale`", "f)", "=", "count", "f", "gsum", "gsum", "(n", "`scale`", "f)", "=", "n^2", "*", "gsum", "f", "^", "Field", ">", "data", "EGrid", "=", "EGrid", "{", ">", "eWidth::Int,", "eHeight::Int,", ">", "faces::Field,", "hedges::Field,", "vedges::Field,", "vertices::Field", ">", "}", "(0,0)", ">", "g2e", "(Grid", "w", "h", "f)", "=", "EGrid", "w", "h", ">", "f", ">", "(\\x", "y", "->", "f", "(x-1)", "y", "`max`", "f", "x", "y)", ">", "(\\x", "y", "->", "f", "x", "(y-1)", "`max`", "f", "x", "y)", ">", "(\\x", "y", "->", "f", "(x-1)", "(y-1)", "`max`", "f", "(x-1)", "y", "`max`", "f", "x", "(y-1)", "`max`", "f", "x", "y)", ">", "fsum", "(EGrid", "w", "h", "f", "_", "_", "_)", "=", "gsum", "(Grid", "w", "h", "f)", ">", "esum", "(EGrid", "w", "h", "_", "e", "f", "_)", "=", "gsum", "(Grid", "(w+1)", "h", "e)+gsum", "(Grid", "w", "(h+1)", "f)", ">", "vsum", "(EGrid", "w", "h", "_", "_", "_", "v)", "=", "gsum", "(Grid", "(w+1)", "(h+1)", "v)", ">", "measure", "a", "b", "c", "g", "=", "let", "e", "=", "g2e", "g", "in", "a*vsum", "e+b*esum", "e+c*fsum", "e", "gsum", ">", "area", "=", "measure", "0", "0", "1", "((n^2)", "*).", "area", "=", "area.", "scale", "n", "a", "b", "c", "measure", "mystery_property1", "=", "measure", "a", "b", "c", "((n^1)", "*).", "mystery_property1", "=", "mystery_property1.", "scale", "n", "mystery_property1" ] ], [ [ "a", "b", "c", "mystery_property1", "a", "b", "c", "measure", "mystery_property2", "=", "measure", "a", "b", "c", "((n^0)", "*).", "mystery_property2", "=", "mystery_property2.", "scale", "n", "mystery_property2", "scale", "gscale", "EGrid", "g2e.", "(scale", "n)", "==", "gscale", "n.", "g2e", "mystery_property2", "measure", "1", "0", "0", "$", "point", "0", "0", "measure", "1", "0", "0", "$", "2", "`scale`", "point", "0", "0", "measure", "1", "0", "0", "$", "3", "`scale`", "point", "0", "0", "4a+", "4b+", "c", "=", "x", "9a+12b+4c", "=", "2x", "16a+24b+9c", "=", "3x", "measure", "0", "1", "(-2)", "measure", "0", "1", "(-2)", "4a+", "4b+", "c", "=", "x", "9a+12b+4c", "=", "x", "16a+24b+9c", "=", "x", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", "measure", "1", "(-1)", "1", ">", "euler", "=", "measure", "1", "(-1)", "1", "euler", "euler", ">", "test3", "=", "euler", "test1", "test1", "area", "measure", "The", "problem", "I", "ultimately", "want", "to", "solve,", "and", "its", "solution,", "is", "described", "in", "the", "paper", "Target", "Enumeration", "via", "Euler", "Characteristic", "Integrals.", "My", "goal", "here", "is", "to", "show", "how", "to", "implement", "that", "solution", "on", "a", "computer", "and", "make", "it", "accessible", "to", "a", "wider", "audience.Suppose", "we", "have", "a", "set", "of", "targets", "we", "want", "to", "count.", "This", "could", "be", "anything", "from", "enemy", "tanks", "rolling", "over", "the", "plains", "to", "electronically", "tagged", "wildlife", "roaming", "the", "countryside.", "Each", "target", "has", "a", "region", "of", "influence", "which", "might", "simply", "be", "circular", "in", "shape,", "or", "might", "be", "more", "complex", "and", "depend", "on", "the", "target.", "Now", "suppose", "that", "we", "have", "a", "high", "density", "of", "sensors", "scattered", "over", "our", "domain", "and", "that", "each", "sensor", "can", "tell", "us", "how", "many", "regions", "of", "influence", "it", "lies", "in.", "Roughly", "speaking,", "each", "sensor", "counts", "how", "many", "targets", "are", "nearby.", "How", "do", "we", "compute", "how", "many", "targets", "we", "have", "in", "total?Here's", "an", "illustration:There", "are", "four", "targets.", "The", "region", "of", "influence", "for", "each", "one", "is", "coloured", "making", "it", "easy", "to", "see", "which", "region", "is", "which.", "I've", "labelled", "each", "region", "with", "an", "integer", "showing", "how", "many", "targets", "can", "be", "detected", "in", "that", "region.", "The", "idea", "is", "that", "we'd", "have", "a", "very", "dense", "scattering", "of", "sensors", "in", "our", "domain,", "each", "sensor", "reporting", "an", "integer.", "In", "effect", "we'd", "be", "getting", "an", "image", "like", "a", "rasterised", "version", "of", "that", "picture.", "But", "we", "wouldn't", "be", "getting", "the", "convenient", "colours,", "just", "an", "integer", "per", "pixel.At", "first", "it", "seems", "like", "a", "trivial", "problem.", "The", "sensors", "can", "all", "count,", "and", "if", "every", "target", "is", "in", "range", "of", "a", "sensor,", "every", "target", "will", "be", "counted.", "But", "we", "can't", "simply", "add", "the", "numbers", "from", "all", "of", "the", "sensors", "as", "many", "sensors", "will", "be", "in", "the", "domain", "of", "influence", "of", "the", "same", "target.", "If", "we", "sum", "all", "of", "the", "numbers", "we'll", "be", "counting", "each", "target", "many", "times", "over.", "We", "need", "to", "be", "able", "to", "subtract", "off", "the", "targets", "that", "are", "counted", "twice.", "But", "some", "targets", "will", "be", "counted", "three", "times", "and", "so", "on.", "And", "how", "do", "we", "tell", "when", "a", "target", "has", "been", "counted", "twice", "when", "all", "we", "have", "are", "counts?We'll", "make", "one", "simplifying", "assumption", "in", "solving", "this", "problem:", "that", "the", "regions", "of", "influence", "are", "simply", "connected.", "In", "other", "words,", "they", "are", "basically", "some", "kind", "of", "shape", "that", "doesn't", "have", "holes", "in", "it.", "That", "could", "mean", "anything", "from", "a", "square", "or", "disk", "to", "a", "shape", "like", "the", "letter", "'W'.", "But", "it", "excludes", "shapes", "like", "annuli", "or", "the", "letter", "'B'.", "If", "we", "make", "this", "assumption", "then", "we", "can", "solve", "this", "problem", "with", "a", "very", "simple", "algorithm", "that", "will", "work", "in", "almost", "all", "cases.", "In", "fact,", "the", "only", "time", "it", "fails", "will", "be", "situations", "where", "no", "algorithm", "could", "possibly", "work.", "But", "there's", "a", "little", "ground", "to", "cover", "before", "getting", "to", "the", "solution.We'll", "make", "another", "simplifying", "assumption", "for", "now.", "That", "the", "sensors", "are", "arranged", "in", "a", "rectangular", "grid.", "So", "the", "data", "we", "get", "back", "from", "the", "sensors", "will", "be", "a", "grid", "filled", "with", "integers.", "That", "essentially", "turns", "our", "problem", "into", "one", "of", "image", "processing", "and", "we", "can", "think", "of", "sensor", "values", "as", "pixels.", "Here's", "a", "picture", "where", "I've", "drawn", "one", "domain", "of", "influence", "and", "I've", "indicated", "the", "values", "returned", "for", "three", "of", "the", "sensors.So", "lets", "assume", "the", "sensors", "have", "coordinates", "given", "by", "pairs", "of", "integers", "and", "that", "they", "return", "integer", "counts.", "The", "state", "of", "all", "the", "sensors", "can", "be", "represented", "by", "a", "function", "of", "this", "type:We'll", "assume", "that", "we", "get", "zero", "if", "we", "try", "to", "read", "from", "beyond", "our", "domain.", "We", "can", "represent", "a", "grid", "of", "sensors,", "including", "the", "grid's", "width", "and", "height,", "using:For", "efficiency", "something", "of", "typeought", "to", "read", "data", "from", "an", "array" ] ], [ [ ",", "but", "I'll", "not", "be", "assuming", "arrays", "here.We", "can", "define", "display", "and", "addition", "of", "two", "grids:Ourultimate", "goal", "is", "to", "define", "some", "kind", "of", "count", "function", "with", "signature:Now", "suppose", "the", "functiongives", "the", "counts", "corresponding", "to", "one", "set", "of", "targets", "andis", "the", "count", "corresponding", "to", "another.", "If", "the", "region", "of", "influence", "of", "these", "two", "sets", "of", "targets", "is", "separated", "by", "at", "least", "one", "'pixel'", "then", "it", "should", "be", "clear", "thatSo", "at", "least", "approximately,is", "additive.", "We", "also", "need", "it", "to", "be", "translation", "invariant.", "There's", "only", "one", "function", "that", "has", "these", "properties,", "summing", "up", "the", "values", "at", "all", "pixels:We", "can", "implement", "functions", "to", "make", "some", "example", "grids:And", "now", "we", "can", "build", "and", "display", "some", "examples:Here's", "a", "typical", "output:It", "should", "be", "pretty", "clear", "that", "this", "doesn't", "count", "the", "number", "of", "targets.", "So", "how", "can", "we", "implement", "something", "additive", "and", "yet", "count", "targets?Another", "operation", "we", "can", "perform", "on", "grids", "is", "scale", "them.", "Here's", "an", "implementation", "of", "scaling", "a", "grid:Scaling", "up", "an", "`image'", "shouldn't", "change", "the", "number", "of", "targets", "detected.", "It", "should", "only", "correspond", "to", "the", "same", "number", "of", "targets", "with", "double-sized", "regions", "of", "influence.", "So", "we'd", "also", "like", "the", "following", "property:It's", "easy", "to", "see", "that", "thatactually", "has", "the", "following", "property", "for", "n>0:is", "the", "power", "function.", "For", "some", "reason", "lhs2TeX", "displays", "it", "as", "an", "up", "arrow.)", "These", "requirements", "are", "pretty", "tough", "to", "meet", "with", "an", "additive", "operation.", "But", "there's", "an", "amazing", "transformation", "we", "can", "perform", "on", "the", "data", "first.", "Instead", "of", "working", "on", "a", "grid", "with", "one", "value", "for", "each", "pixel", "we'll", "also", "store", "values", "for", "the", "'edges'", "between", "pixels", "and", "for", "the'vertices'", "at", "the", "corners", "of", "pixels.So", "lets", "define", "a", "new", "kind", "of", "grid", "to", "be", "a", "tuple", "offunctions,", "one", "for", "faces", "(ie.", "the", "pixels),", "one", "for", "horizontal", "edges,", "one", "for", "vertical", "edges,", "and", "one", "for", "vertices.The", "lower", "left", "vertex", "isbut", "we", "need", "to", "add", "an", "extra", "row", "and", "column", "of", "vertices", "on", "the", "right.", "Similarly", "we'll", "need", "an", "extra", "row", "and", "an", "extra", "column", "of", "edges.", "We", "can", "now", "`resample'", "our", "original", "grid", "onto", "one", "of", "these", "new", "style", "grids:I'm", "using", "the", "rule", "that", "the", "value", "along", "an", "edge", "will", "be", "the", "maximum", "of", "the", "values", "on", "the", "two", "impinging", "faces.", "Similarly,", "the", "vertices", "acquire", "the", "maximum", "of", "the", "four", "faces", "they", "meet.I'll", "try", "to", "illustrate", "that", "here:I", "hope", "you", "can", "see,", "from", "the", "placement", "of", "the", "labels,", "how", "I've", "attached", "values", "to", "edges", "and", "vertices", "as", "well", "as", "faces.We", "now", "have", "a", "bit", "more", "freedom.", "We", "have", "three", "different", "types", "of", "sum", "we", "can", "carry", "out:(We", "could", "sum", "over", "horizontal", "and", "vertical", "edges", "separately", "too,", "but", "if", "we", "did", "that", "then", "a", "90", "degree", "rotation", "would", "give", "a", "different", "target", "count.)Now", "we", "can", "define", "a", "measurement", "function", "that", "takes", "three", "`weights'", "and", "gives", "us", "back", "a", "weighted", "sum:We", "can", "reproduce", "thefunction", "asTry", "some", "examples", "to", "test", "thatNow", "I", "can", "leave", "you", "with", "some", "challenges:1.", "Find", "some", "suitable", "argumentsandtoso", "that", "we", "get:I'll", "let", "you", "assume", "that", "there", "is", "some", "choice", "of", "values", "that", "works.(Hint:", "you", "just", "need", "to", "try", "applyingto", "a", "few", "scalings", "of", "some", "chosen", "shape.", "You'll", "quickly", "find", "some", "simultaneous", "equations", "inandto", "solve.", "Solve", "them.)2.", "Can", "you", "find", "a", "simple", "geometric", "interpretation", "for?", "Assume", "that", "the", "original", "input", "grid", "simply", "consists", "of", "zeros", "and", "ones,", "so", "that", "it's", "a", "binary", "image.", "It", "shouldn't", "be", "hard", "to", "find", "a", "good", "interpretation.", "It's", "a", "little", "harder", "if", "it", "isn't", "a", "binary", "image", "so", "don't", "worry", "too", "much", "about", "that", "case.3.", "Now", "find", "some", "suitable", "argumentsandtoso", "that", "we", "get:4.", "Can", "you", "find", "a", "simple", "interpretation", "for", "binary", "images?", "You", "might", "think", "you", "have", "it", "immediately", "so", "work", "hard", "to", "find", "counterexamples.", "Have", "a", "solid", "interpretation", "yet?", "And", "can", "you", "extend", "it", "to", "images", "that", "consist", "of", "more", "general", "integers?5.", "Optimise", "the", "code", "forassuming", "the", "image", "is", "binary", "and", "that", "the", "input", "is", "on", "a", "2D", "array.", "Ultimately", "you", "should", "get", "some", "code", "that", "walks", "a", "2D", "array", "doing", "something", "very", "simple", "at", "each", "pixel.", "Can", "you", "understand", "how", "it's", "managing", "to", "compute", "something", "that", "fits", "the", "interpretation", "you", "gave?6.", "Define", "a", "version", "ofcalledthat", "works", "ons.", "Among", "other", "things", "we", "should", "expect:and", "that", "the", "invariance", "properties", "of", "the", "mystery", "properties", "should", "hold", "with", "respect", "to", "gscale.I'll", "answer", "most", "of", "these", "questions", "in", "my", "next", "post.", "If", "you", "findyou've", "rediscovered", "one", "of", "the", "deepest", "notions", "in", "mathematics.", "Something", "that", "appears", "in", "fields", "as", "diverse", "as", "combinatorics,", "algebraic", "geometry,", "algebraic", "topology,", "graph", "theory,", "group", "theory,", "geometric", "probability,", "fluid", "dynamics,", "and,", "of", "course,", "image", "processing.Let's", "start", "with", "exercise", "1", "from", "my", "previous", "post.", "I", "allowed", "you", "to", "assume", "there", "was", "a", "solution.", "Knowing", "this", "we", "only", "need", "to", "try", "scaling", "up", "one", "shape.", "Here", "are", "three", "scalings", "of", "a", "single", "pixel:For", "the", "1x1", "square", "we", "have:", "1", "face,", "4", "edges,", "4", "vertices.For", "the", "2x2", "square", "we", "have" ] ], [ [ ":", "4", "faces,", "12", "edges,", "9", "vertices.For", "the", "3x3", "square", "we", "have:", "9", "faces,", "24", "edges,", "16", "vertices.(If", "you", "don't", "feel", "like", "counting", "these", "yourself", "you", "can", "use", "code", "like:and", "so", "on.So", "now", "we", "have", "some", "equations:We", "find", "a=0,", "c=-2b.", "I'll", "pick", "b", "=", "1,", "c", "=", "-2.", "There's", "a", "straightfoward", "interpretation", "offor", "binary", "images.", "It", "computes", "half", "of", "the", "perimeter,", "the", "semi-perimeter.", "There's", "a", "nice", "way", "to", "see", "this.", "We", "can", "try", "to", "count", "the", "number", "of", "edges", "in", "a", "shape", "starting", "from", "the", "number", "of", "faces", "in", "it.", "You", "can", "think", "of", "each", "face", "as", "being", "surrounded", "by", "4", "\"half-thickness\"", "edges.", "Where", "two", "faces", "meet", "we", "get", "a", "full", "thickness", "edge,", "so", "using", "half", "the", "number", "of", "faces", "counts", "internal", "edges", "correctly.", "But", "around", "the", "border", "of", "a", "shape", "we", "are", "left", "with", "contributions", "from", "only", "a", "face", "on", "one", "side.", "So", "we're", "only", "counting", "the", "perimeter", "edges", "by", "half.", "We", "get", "a", "shortfall", "of", "the", "semi-perimeter.", "Working", "backwards", "tells", "us", "how", "to", "compute", "the", "semi-perimeter", "from", "the", "total", "number", "of", "edges", "and", "faces.For", "more", "general", "images,", "not", "just", "binary", "ones,", "we", "can", "roughly", "think", "ofas", "computing", "the", "sum", "of", "the", "semi-perimeters", "of", "all", "of", "the", "isocontours", "of", "our", "image.The", "interesting", "case", "is", "now", "exercise", "3.", "This", "time", "our", "equation", "is:Now", "we", "get", "a", "solution", "a", "=", "1," ], [ "=", "1.", "If", "you", "try", "computing", "this", "for", "a", "few", "shapes", "it", "looks", "like", "it's", "counting", "the", "number", "of", "connected", "components", "of", "a", "binary", "image.", "However,", "once", "you", "realise", "the", "possibility", "of", "some", "holes", "in", "your", "image", "you", "find", "that", "it", "always", "turns", "out", "to", "be", "the", "total", "number", "of", "connected", "components", "minus", "the", "total", "number", "of", "holes.Here's", "an", "example.", "Treat", "this", "as", "a", "single", "complete", "image:It", "has", "two", "components", "and", "one", "hole", "so", "we", "expectto", "give", "us", "1.", "We", "can", "count:14", "faces42", "edges29", "verticesGiving", "29-42+14", "=", "1.I'm", "not", "sure", "which", "is", "the", "easiest", "proof", "that", "vertices-edges+faces", "counts", "the", "number", "of", "components", "minus", "the", "number", "of", "holes.", "One", "approach", "is", "this:", "we", "only", "need", "to", "consider", "one", "connected", "component", "at", "a", "time.", "Remove", "its", "holes.", "Now", "build", "up", "the", "shape", "one", "pixel", "at", "a", "time", "starting", "with", "one", "pixel", "and", "ensuring", "that", "you", "have", "a", "hole-free", "shape", "at", "each", "stage.", "It's", "not", "hard", "to", "enumerate", "all", "of", "the", "possible", "ways", "you", "can", "add", "one", "pixel", "to", "an", "existing", "shape", "and", "show", "that", "each", "such", "addition", "leavesunchanged.", "If", "you", "now", "make", "a", "single", "pixel", "hole", "in", "your", "shape", "you'll", "see", "that", "it", "lowersby", "1.", "If", "you", "now", "continue", "to", "add", "pixels", "to", "the", "hole,", "in", "a", "way", "that", "doesn't", "change", "the", "number", "of", "holes,", "you'll", "see", "thatremains", "unchanged", "again.computes", "what", "is", "known", "as", "the", "Euler", "characteristic", "of", "a", "shape.", "I", "talked", "a", "little", "about", "this", "in", "one", "context", "earlier", "and", "showed", "how", "to", "compute", "it", "in", "another", "context", "here.", "The", "Euler", "characteristic", "is", "a", "topological", "invariant", "of", "a", "shape", "in", "the", "sense", "that", "a", "rubber", "sheet", "deformation", "of", "a", "shape", "leaves", "the", "number", "of", "holes", "and", "the", "number", "of", "components", "unchanged.The", "above", "description", "shows", "that", "the", "Euler", "characteristic", "is", "particularly", "easy", "to", "compute.", "It", "simply", "requires", "a", "map-reduce", "operation", "over", "the", "entire", "grid.", "But", "what", "about", "the", "separate", "terms:", "the", "number", "of", "components", "and", "the", "number", "of", "holes?", "These", "seem", "like", "simpler", "notions", "and", "you", "might", "expect", "them", "to", "be", "just", "as", "easy", "to", "compute.", "Actually", "they", "are", "harder", "to", "compute.", "Compare", "also", "with", "flood", "fill", "algorithms", "which", "solve", "a", "related", "problem.", "Minsky", "and", "Papert", "show", "in", "their", "book", "Perceptrons", "that", "any", "topological", "invariant", "that", "can", "be", "learnt", "by", "a", "one", "layer", "neural", "network", "(with", "certain", "resonable", "restrictions)", "must", "be", "a", "function", "of", "the", "Euler", "characteristic.", "I", "find", "it", "quite", "amazing", "that", "this", "notion", "from", "topology", "is", "connected", "(no", "pun", "intended)", "to", "learnability.We", "can", "defineI", "have", "sketched", "an", "argument", "thatcounts", "#components-#holes.", "If", "we", "assume", "that", "each", "of", "our", "connected", "components", "has", "no", "holes", "then", "it", "counts", "the", "number", "of", "components.", "But", "here's", "a", "neat", "thing:", "if", "we", "*add*", "two", "images", "that", "contain", "strictly", "overlapping", "shapes", "(ie.", "not", "just", "touching", "each", "other", "along", "their", "boundaries)", "then", "because", "of", "additivity,will", "still", "count", "the", "number", "of", "shapes.", "In", "other", "words,", "if", "you", "did", "the", "exercises", "then", "you", "solved", "the", "target", "enumeration", "problem.", "It's", "pretty", "miraculous.", "You", "could", "splat", "down", "thousands", "of", "geometric", "shapes", "into", "an", "image.", "They", "can", "overlap", "as", "much", "as", "you", "like.", "But", "as", "long", "as", "they", "don't", "touch", "along", "a", "boundary", "you", "can", "still", "compute", "the", "total", "number", "of", "shapes.", "If", "two", "shapes", "do", "touch", "along", "a", "common", "boundary", "then", "no", "algorithm", "can", "work,", "after", "all", "they'll", "be", "indistinguishable", "from", "a", "single", "connected", "shape.", "For", "a", "quick", "example,", "notice", "howrecovers", "thatis", "the", "sum", "of", "4", "shapes", "that", "don't", "touch.Consider", "our", "original", "measurement.", "This", "sums", "the", "values", "at", "each", "pixel.", "It", "is", "a", "numerical", "approximation", "to", "the", "integral", "of", "a", "function", "sampled" ] ], [ [ "at", "each", "pixel.", "Likewise", "each", "of", "thefunctions", "is", "numerical", "approximation", "to", "a", "generalised", "type", "of", "integral.", "The", "original", "paper", "uses", "these", "integrals", "to", "solve", "its", "problem.", "I", "have", "simply", "used", "a", "discrete", "version.I", "apologise", "for", "only", "sketching", "proofs.", "It", "takes", "considerably", "more", "work", "to", "provide", "rigorous", "proofs.", "But", "I", "encourage", "you", "to", "experiment", "with", "the", "code", "and", "attempt", "to", "find", "counterexamples.", "The", "history", "of", "the", "Euler", "characteristic", "is", "itself", "characteristed", "by", "a", "kind", "of", "back", "and", "forth", "between", "attempted", "proofs", "and", "counterexamples", "than", "in", "a", "strange", "way", "mirrors", "the", "innocent", "looking", "definition:", "vertices-edges+faces.By", "the", "way,", "some", "people", "have", "propsed", "that", "the", "Euler", "characteristic", "is", "a", "kind", "of", "generalisation", "of", "the", "idea", "of", "counting.", "It", "shares", "many", "properties", "with", "the", "usual", "notion", "of", "cardinality.One", "last", "thing:", "I", "have", "implicitly", "shown", "that", "target", "counting", "is", "learnable", "by", "a", "certain", "type", "of", "one-layer", "neural", "network.And", "thanks", "to", "@alpheccar", "for", "pointing", "out", "the", "original", "target", "enumeration", "paper.I'm", "repeating", "this", "as", "a", "possibly", "apocryphal", "story", "I", "have", "heard", "from", "other", "parties:", "Minsky", "and", "Papert", "demonstrated", "that", "the", "only", "learnable", "topological", "invariants", "for", "single", "layer", "network", "are", "functions", "of", "the", "Euler", "characteristic.", "In", "particular,", "they", "demonstrated", "the", "unlearnability", "of", "connectedness.", "This", "was", "a", "precisely", "stated", "no-go", "theorem", "that", "discouraged", "and", "slowed", "investment", "in", "neural", "network", "research", "for", "many", "years", "and", "helped", "contribute", "to", "the", "AI", "Winter.", "Is", "there", "a", "good", "historical", "book", "on", "this", "period", "of", "AI", "research?" ] ] ]
[ [ "en" ], [ "en" ], [ "en" ], [ "en", "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "Nearly", "eight", "years", "ago,", "Rahm", "Emanuel,", "President", "Barack", "Obama's", "brash,", "f-bomb", "dropping", "former", "chief", "of", "staff", "swept", "to", "power", "in", "Chicago", "promising", "to", "cut", "down", "on", "crime", "and", "corruption", "and", "be", "the", "much-needed", "adult", "in", "the", "room", "to", "run", "America’s", "third-largest", "city.", "Fast", "forward", "to", "Tuesday,", "Mayor", "Emanuel,", "in", "a", "surprise", "announcement,", "said", "he", "would", "not", "be", "seeking", "a", "third", "term,", "leaving", "behind", "a", "legacy", "of", "record", "homicide", "levels,", "soaring", "crime", "rates", "and", "a", "deep", "racial", "divide", "that", "has", "polarized", "the", "Windy", "City.", "“For", "the", "last", "seven", "and", "a", "half", "years", "I’ve", "given", "my", "all", "every", "day", "and", "left", "everything", "on", "the", "field,”", "Emanuel", "said", "at", "a", "press", "conference", "this", "week.", "“This", "commitment", "has", "required", "significant", "sacrifice", "all", "around.”", "CHICAGO", "MAYOR", "RAHM", "EMANUEL", "ANNOUNCES", "HE", "WILL", "NOT", "SEEK", "RE-ELECTION", "But", "the", "numbers", "tell", "a", "different", "story.", "Since", "Emanuel", "took", "office", "in", "mid-May", "2011,", "there", "have", "been", "more", "than", "19,000", "shootings", "in", "Chicago.", "In", "that", "time,", "there", "have", "been", "4,000", "murders.", "According", "to", "the", "Chicago", "Police", "Department,", "the", "average", "number", "of", "murders", "per", "year", "during", "Emanuel’s", "administration", "is", "541.", "The", "average", "number", "of", "murders", "per", "year", "prior", "to", "Emanuel", "taking", "office", "was", "463.", "Emanuel’s", "surprise", "announcement", "comes", "as", "he", "faces", "harsh", "criticism", "over", "his", "handling", "of", "race", "relations", "and", "his", "response", "to", "violent", "crime.", "He’s", "been", "accused", "of", "favoring", "Chicago’s", "wealthier", "north", "and", "east", "sides", "while", "ignoring", "the", "crime-ridden,", "poverty-plagued", "areas", "south", "and", "west", "of", "the", "city.", "RAHM", "EMANUEL", "UNDER", "INCREASING", "FIRE", "FOR", "LINKING", "CHICAGO", "VIOLENCE", "AND", "MORALS", "IN", "MINORITY", "NEIGHBORHOODS", "His", "promise", "of", "cleaning", "up", "the", "streets", "when", "he", "took", "office", "in", "2011", "has", "fallen", "short", "of", "expectations.", "“Chicago", "is", "still", "known", "as", "the", "murder", "capital", "of", "America,”", "Dick", "Simpson,", "professor", "and", "director", "of", "undergraduate", "studies", "at", "University", "of", "Illinois", "at", "Chicago,", "told", "Fox", "News.", "“(Emanuel)", "has", "tried", "hard", "to", "deal", "with", "the", "problem", "but", "has", "not", "been", "successful.”", "The", "mayor’s", "decision", "to", "step", "away", "from", "the", "political", "spotlight", "comes", "as", "the", "murder", "trial", "of", "a", "white", "police", "officer", "accused", "of", "shooting", "a", "black", "teenager", "gets", "underway.", "Chicago", "police", "officer", "Jason", "Van", "Dyke", "is", "accused", "of", "killing", "17-year-old", "Laquan", "McDonald.", "Grainy", "dash", "camera", "video", "shows", "McDonald", "writhing", "around", "on", "the", "ground", "after", "being", "shot", "16", "times.", "Emanuel’s", "team", "of", "city", "attorneys", "fought", "against", "the", "release", "of", "the", "video", "for", "more", "than", "a", "year", "until", "a", "judge", "in", "2015", "ordered", "it", "to", "be", "made", "public.", "Many", "activists", "and", "community", "leaders", "accused", "Emanuel", "of", "trying", "to", "cover-up", "the", "incident,", "putting", "the", "already", "fragile", "relationship", "between", "the", "mayor", "and", "community", "into", "disrepair.", "When", "it", "was", "finally", "released,", "the", "video", "sparked", "outrage", "and", "led", "to", "widespread", "protests", "as", "well", "as", "calls", "to", "gut", "the", "Chicago", "Police", "Department.", "Emanuel’s", "administration", "was", "also", "on", "the", "receiving", "end", "of", "a", "scathing", "2017", "Department", "of", "Justice", "report", "that", "found", "Chicago", "police", "routinely", "used", "excessive", "force,", "violated", "civil", "rights", "and", "had", "racial", "bias", "against", "blacks.", "The", "investigation,", "one", "of", "the", "largest", "in", "the", "nation,", "was", "prompted", "by", "the", "Van", "Dyke", "dash-cam", "video.", "The", "report", "slammed", "the", "city", "and", "police", "for", "insufficient", "training", "and", "a", "failure", "to", "hold", "power-hungry", "officers", "accountable.", "Jamie", "Dominguez,", "a", "professor", "of", "political", "science", "at", "Northwestern", "University,", "said:", "“[The]", "collection", "of", "these", "issues", "has", "greatly", "soured", "his", "relationship", "with", "a", "core", "constituency", "fundamental", "to", "his", "electoral", "success:", "the", "black", "community.”", "In", "2017,", "Black", "Lives", "Matter", "as", "well", "as", "a", "handful", "of", "other", "groups", "sued", "the", "city", "after", "Emanuel", "backed", "off", "a", "pledge", "to", "allow", "a", "federal", "judge", "to", "oversee", "reforms.", "\"Chicago", "has", "proven", "time", "and", "time", "again", "that", "it", "is", "incapable", "of", "ending", "its", "own", "regime", "of", "terror,", "brutality", "and", "discriminatory", "policing,\"", "the", "lawsuit", "said.", "\"Absent", "federal", "court", "supervision,", "nothing", "will", "improve.\"", "Emanuel", "has", "also", "faced", "backlash", "for", "seeming", "to", "look", "the", "other", "way", "when", "it", "comes", "to", "crime", "in", "some", "parts", "of", "the", "city.", "The", "majority", "of", "Chicago", "shootings", "take", "place", "in", "the", "city’s", "south", "and", "west", "sides", "-", "areas", "not", "only", "marked", "by", "deteriorating", "neighborhoods", "but", "that", "also", "lack", "quick,", "efficient", "emergency", "care.", "Last", "year,", "the", "number", "of", "murders", "in", "Chicago", "was", "up", "47", "percent", "versus", "2010.", "Even", "though", "Chicago’s", "homicide", "rate", "is", "high", "compared", "to", "other", "major", "cities,", "as", "of", "Sept.", "3,", "it", "has", "seen", "a", "19", "percent", "decrease", "from", "the", "year", "before.", "The", "city", "clocked", "462", "murders", "during", "the", "first", "nine", "months", "of", "2017.", "In", "2018,", "the", "number", "fell", "to", "375.", "While", "authorities", "have", "attributed", "the", "decrease", "to", "improvements", "in", "technology", "as", "well", "as", "a", "coordinated", "effort", "to", "rebuild", "relationships", "in", "the", "community,", "not", "everyone", "is", "convinced.", "PICTURE", "OF", "SNOOZING", "CH" ], [ "ICAGO", "COP", "GOES", "VIRAL", "AFTER", "VIOLENT", "WEEKEND", "“We", "can’t", "survive", "another", "year", "of", "mayhem,”", "Rep.", "Danny", "K.", "Davis,", "D-Ill.,", "recently", "told", "Fox", "News.", "“The", "stress", "and", "strain", "of", "it", "is", "so", "great.", "Everyone", "seems", "to", "be", "on", "different", "pages", "and", "there", "are", "constant", "crosses", "and", "difficult", "situations", "to", "bear.”", "Widespread", "crime", "has", "also", "taken", "a", "toll", "on", "Chicago’s", "children.", "Each", "month", "this", "calendar", "year,", "at", "least", "one", "minor", "has", "been", "shot", "and", "killed", "in", "Chicago.", "According", "to", "data", "compiled", "by", "The", "Chicago", "Tribune,", "since", "September", "2011", "at", "least", "174", "people", "under", "the", "age", "of", "17", "have", "been", "killed", "while", "1,665", "kids", "have", "been", "shot.", "Prior", "to", "dropping", "out", "of", "the", "race,", "Emanuel’s", "political", "opponents", "took", "him", "to", "task", "for", "blaming", "a", "lack", "of", "morals", "in", "predominantly", "black", "and", "Hispanic", "neighborhoods", "for", "an", "uptick", "in", "violent", "crime.", "Emanuel", "urged", "locals", "to", "“be", "a", "neighbor”", "and", "“speak", "up”", "to", "help", "law", "enforcement", "pursue", "killers,", "gang", "members", "and", "drug", "dealers.", "After", "one", "particularly", "violent", "weekend", "in", "early", "August", "when", "nearly", "80", "people", "were", "shot,", "Emanuel", "deflected", "questions", "about", "police", "staffing", "and", "strategy.", "Instead,", "he", "ignited", "a", "firestorm", "when", "he", "said", "there", "needs", "to", "be", "a", "politically", "incorrect", "conversation", "about", "character", "and", "values.", "Critics", "called", "him", "out", "for", "what", "they", "dubbed", "tone-deaf", "comments,", "in", "which", "Emanuel", "seemed", "to", "be", "blaming", "the", "victims.", "Shari", "Runner,", "former", "president", "and", "CEO", "of", "the", "Chicago", "Urban", "League,", "deemed", "the", "remarks", "insensitive.", "\"I", "cannot", "see", "the", "victims", "of", "racist", "policies", "and", "bigoted", "practices", "shamed", "by", "anyone", "who", "says", "they", "need", "to", "do", "better", "or", "be", "better", "in", "their", "circumstance.", "I", "won’t", "accept", "it,”", "Runner", "said", "Prior", "to", "Emanuel’s", "decision", "to", "duck", "out", "of", "the", "mayoral", "race,", "a", "dozen", "or", "so", "candidates", "had", "lined", "up", "to", "challenge", "him.", "After", "his", "announcement,", "political", "watchers", "expect", "that", "number", "to", "rise", "significantly." ] ]
[ [ "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Nearly", "eight", "years", "ago,", "Rahm", "Emanuel,", "President", "Barack", "Obama's", "brash,", "f-bomb", "dropping", "former", "chief", "of", "staff", "swept", "to", "power", "in", "Chicago", "promising", "to", "cut", "down", "on", "crime", "and", "corruption", "and", "be", "the", "much-needed", "adult", "in", "the", "room", "to", "run", "America’s", "third-largest", "city.", "Fast", "forward", "to", "Tuesday,", "Mayor", "Emanuel,", "in", "a", "surprise", "announcement,", "said", "he", "would", "not", "be", "seeking", "a", "third", "term,", "leaving", "behind", "a", "legacy", "of", "record", "homicide", "levels,", "soaring", "crime", "rates", "and", "a", "deep", "racial", "divide", "that", "has", "polarized", "the", "Windy", "City.", "“For", "the", "last", "seven", "and", "a", "half", "years", "I’ve", "given", "my", "all", "every", "day", "and", "left", "everything", "on", "the", "field,”", "Emanuel", "said", "at", "a", "press", "conference", "this", "week.", "“This", "commitment", "has", "required", "significant", "sacrifice", "all", "around.”", "CHICAGO", "MAYOR", "RAHM", "EMANUEL", "ANNOUNCES", "HE", "WILL", "NOT", "SEEK", "RE-ELECTION", "But", "the", "numbers", "tell", "a", "different", "story.", "Since", "Emanuel", "took", "office", "in", "mid-May", "2011,", "there", "have", "been", "more", "than", "19,000", "shootings", "in", "Chicago.", "In", "that", "time,", "there", "have", "been", "4,000", "murders.", "According", "to", "the", "Chicago", "Police", "Department,", "the", "average", "number", "of", "murders", "per", "year", "during", "Emanuel’s", "administration", "is", "541.", "The", "average", "number", "of", "murders", "per", "year", "prior", "to", "Emanuel", "taking", "office", "was", "463.", "Emanuel’s", "surprise", "announcement", "comes", "as", "he", "faces", "harsh", "criticism", "over", "his", "handling", "of", "race", "relations", "and", "his", "response", "to", "violent", "crime.", "He’s", "been", "accused", "of", "favoring", "Chicago’s", "wealthier", "north", "and", "east", "sides", "while", "ignoring", "the", "crime-ridden,", "poverty-plagued", "areas", "south", "and", "west", "of", "the", "city.", "RAHM", "EMANUEL" ], [ "INCREASING", "FIRE", "FOR", "LINKING", "CHICAGO", "VIOLENCE", "AND", "MORALS", "IN", "MINORITY", "NEIGHBORHOODS", "His", "promise", "of", "cleaning", "up", "the", "streets", "when", "he", "took", "office", "in", "2011", "has", "fallen", "short", "of", "expectations.", "“Chicago", "is", "still", "known", "as", "the", "murder", "capital", "of", "America,”", "Dick", "Simpson,", "professor", "and", "director", "of", "undergraduate", "studies", "at", "University", "of", "Illinois", "at", "Chicago,", "told", "Fox", "News.", "“(Emanuel)", "has", "tried", "hard", "to", "deal", "with", "the", "problem", "but", "has", "not", "been", "successful.”", "The", "mayor’s", "decision", "to", "step", "away", "from", "the", "political", "spotlight", "comes", "as", "the", "murder", "trial", "of", "a", "white", "police", "officer", "accused", "of", "shooting", "a", "black", "teenager", "gets", "underway.", "Chicago", "police", "officer", "Jason" ], [ "Dyke", "is", "accused", "of", "killing", "17-year-old", "Laquan", "McDonald.", "Grainy", "dash", "camera", "video", "shows", "McDonald", "writhing", "around", "on", "the", "ground", "after", "being", "shot", "16", "times.", "Emanuel’s", "team", "of", "city", "attorneys", "fought", "against", "the", "release", "of", "the", "video", "for", "more", "than", "a", "year", "until", "a", "judge", "in", "2015", "ordered", "it", "to", "be", "made", "public.", "Many", "activists", "and", "community", "leaders", "accused", "Emanuel", "of", "trying", "to", "cover-up", "the", "incident,", "putting", "the", "already", "fragile", "relationship", "between", "the", "mayor", "and", "community", "into", "disrepair.", "When", "it", "was", "finally", "released,", "the", "video", "sparked", "outrage", "and", "led", "to", "widespread", "protests", "as", "well", "as", "calls", "to", "gut", "the", "Chicago", "Police", "Department.", "Emanuel’s", "administration", "was", "also", "on", "the", "receiving", "end", "of", "a", "scathing", "2017", "Department", "of", "Justice", "report", "that", "found", "Chicago", "police", "routinely", "used", "excessive", "force,", "violated", "civil", "rights", "and", "had", "racial", "bias", "against", "blacks.", "The", "investigation,", "one", "of", "the", "largest", "in", "the", "nation,", "was", "prompted", "by", "the", "Van", "Dyke", "dash-cam", "video.", "The", "report", "slammed", "the", "city", "and", "police", "for", "insufficient", "training", "and", "a", "failure", "to", "hold", "power-hungry", "officers", "accountable.", "Jamie", "Dominguez,", "a", "professor", "of", "political", "science", "at", "Northwestern", "University,", "said:", "“[The]", "collection", "of", "these", "issues", "has", "greatly", "soured", "his", "relationship", "with", "a", "core", "constituency", "fundamental", "to", "his", "electoral", "success:", "the", "black", "community.”", "In", "2017,", "Black", "Lives", "Matter", "as", "well", "as", "a", "handful", "of", "other", "groups", "sued", "the", "city", "after", "Emanuel", "backed", "off", "a", "pledge", "to", "allow", "a", "federal", "judge", "to", "oversee", "reforms.", "\"Chicago", "has", "proven", "time", "and", "time", "again", "that", "it", "is", "incapable", "of", "ending", "its", "own", "regime", "of", "terror,", "brutality", "and", "discriminatory", "policing,\"", "the", "lawsuit", "said.", "\"Absent", "federal", "court", "supervision,", "nothing", "will", "improve.\"", "Emanuel", "has", "also", "faced", "backlash", "for", "seeming", "to", "look", "the", "other", "way", "when", "it", "comes", "to", "crime", "in", "some", "parts", "of", "the", "city.", "The", "majority", "of", "Chicago", "shootings", "take", "place", "in", "the", "city’s", "south", "and", "west", "sides", "-", "areas", "not", "only", "marked", "by", "deteriorating", "neighborhoods", "but", "that", "also", "lack", "quick,", "efficient", "emergency", "care.", "Last", "year,", "the", "number", "of", "murders", "in", "Chicago", "was", "up", "47", "percent", "versus", "2010.", "Even", "though", "Chicago’s", "homicide", "rate", "is", "high", "compared", "to", "other", "major", "cities,", "as", "of", "Sept.", "3,", "it", "has", "seen", "a", "19", "percent", "decrease", "from", "the", "year", "before.", "The", "city", "clocked", "462", "murders", "during", "the", "first", "nine", "months", "of", "2017.", "In", "2018,", "the", "number", "fell", "to", "375.", "While", "authorities", "have", "attributed", "the", "decrease", "to", "improvements", "in", "technology", "as", "well", "as", "a", "coordinated", "effort", "to", "rebuild", "relationships", "in", "the", "community,", "not", "everyone", "is", "convinced.", "PICTURE", "OF", "SNOOZING", "CH" ] ], [ [ "ICAGO", "COP", "GOES", "VIRAL", "AFTER", "VIOLENT", "WEEKEND", "“We", "can’t", "survive", "another", "year", "of", "mayhem,”", "Rep.", "Danny", "K.", "Davis,", "D-Ill.,", "recently", "told", "Fox", "News.", "“The", "stress", "and", "strain", "of", "it", "is", "so", "great.", "Everyone", "seems", "to", "be", "on", "different", "pages", "and", "there", "are", "constant", "crosses", "and", "difficult", "situations", "to", "bear.”", "Widespread", "crime", "has", "also", "taken", "a", "toll", "on", "Chicago’s", "children.", "Each", "month", "this", "calendar", "year,", "at", "least", "one", "minor", "has", "been", "shot", "and", "killed", "in", "Chicago.", "According", "to", "data", "compiled", "by", "The", "Chicago", "Tribune,", "since", "September", "2011", "at", "least", "174", "people", "under", "the", "age", "of", "17", "have", "been", "killed", "while", "1,665", "kids", "have", "been", "shot.", "Prior", "to", "dropping", "out", "of", "the", "race,", "Emanuel’s", "political", "opponents", "took", "him", "to", "task", "for", "blaming", "a", "lack", "of", "morals", "in", "predominantly", "black", "and", "Hispanic", "neighborhoods", "for", "an", "uptick", "in", "violent", "crime.", "Emanuel", "urged", "locals", "to", "“be", "a", "neighbor”", "and", "“speak", "up”", "to", "help", "law", "enforcement", "pursue", "killers,", "gang", "members", "and", "drug", "dealers.", "After", "one", "particularly", "violent", "weekend", "in", "early", "August", "when", "nearly", "80", "people", "were", "shot,", "Emanuel", "deflected", "questions", "about", "police", "staffing", "and", "strategy.", "Instead,", "he", "ignited", "a", "firestorm", "when", "he", "said", "there", "needs", "to", "be", "a", "politically", "incorrect", "conversation", "about", "character", "and", "values.", "Critics", "called", "him", "out", "for", "what", "they", "dubbed", "tone-deaf", "comments,", "in", "which", "Emanuel", "seemed", "to", "be", "blaming", "the", "victims.", "Shari", "Runner,", "former", "president", "and", "CEO", "of", "the", "Chicago", "Urban", "League,", "deemed", "the", "remarks", "insensitive.", "\"I", "cannot", "see", "the", "victims", "of", "racist", "policies", "and", "bigoted", "practices", "shamed", "by", "anyone", "who", "says", "they", "need", "to", "do", "better", "or", "be", "better", "in", "their", "circumstance.", "I", "won’t", "accept", "it,”", "Runner", "said", "Prior", "to", "Emanuel’s", "decision", "to", "duck", "out", "of", "the", "mayoral", "race,", "a", "dozen", "or", "so", "candidates", "had", "lined", "up", "to", "challenge", "him.", "After", "his", "announcement,", "political", "watchers", "expect", "that", "number", "to", "rise", "significantly." ] ] ]
[ [ "en", "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Using", "Trump's", "favorite", "mode", "of", "communicating,", "the", "embassy", "tweeted", "\"Good", "Morning,", "Space", "Forces!\"", "along", "with", "a", "graphic", "of", "a", "rocket", "being", "launched", "and", "features", "the", "Russian", "flag.", "|", "Chris", "Kleponis/AFP/Getty", "Images", "Russian", "Embassy", "mocks", "Trump’s", "Space", "Force", "logos", "The", "Russian", "Embassy", "in", "the", "United", "States", "early", "Friday", "morning", "seemingly", "mocked", "President", "Donald", "Trump's", "campaign", "for", "a", "logo", "for", "the", "administration's", "newly", "announced", "\"Space", "Force.\"", "Using", "Trump's", "favorite", "mode", "of", "communicating,", "the", "embassy", "tweeted", "\"Good", "Morning,", "Space", "Forces!\"", "along", "with", "a", "graphic", "of", "a", "rocket", "being", "launched", "and", "features", "the", "Russian", "flag.", "The", "tweet", "also", "links", "to", "a", "Ministry", "of", "Defense", "of", "the", "Russian", "Federation's", "Space", "Forces", "website.", "The", "Space", "Force,", "which", "was", "announced", "Thursday,", "will", "establish", "a", "standalone", "military", "Space", "Force", "by", "2020.", "Vice", "President", "Mike", "Pence", "said", "during", "the", "revealing", "at", "the", "Pentagon", "that", "weapons", "being", "developed", "by", "Russia", "and", "China,", "which", "include", "anti-satellite", "weapons,", "lasers", "and", "hypersonic", "missiles,", "could", "threaten", "U.S.", "reliance", "on", "space", "systems.", "The", "force", "would", "include", "creating", "an", "elite", "group", "of", "space", "troops", "in", "the", "same", "vein", "as", "current", "special", "operations", "forces.", "Trump", "in", "an", "email", "asked", "supporters", "to", "vote", "on", "six", "proposed", "logos,", "which", "almost", "all", "include", "the", "phrase", "\"Space", "Force.\"", "One", "of", "the", "designs,", "however,", "has", "the", "phrase", "\"Mars", "Awaits.\"", "One", "of", "the", "proposals", "has", "also", "been", "criticized", "online", "for", "resembling", "the", "NASA", "logo.", "Trump,", "who", "has", "for", "several", "months", "brought", "up", "the", "idea", "of", "a", "space", "force,", "tweeted", "after", "the", "announcement:", "\"Space", "Force", "all", "the", "way!\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Using", "Trump's", "favorite", "mode", "of", "communicating,", "the", "embassy", "tweeted", "\"Good", "Morning,", "Space", "Forces!\"", "along", "with", "a", "graphic", "of", "a", "rocket", "being", "launched", "and", "features", "the", "Russian", "flag.", "|", "Chris", "Kleponis/AFP/Getty", "Images", "Russian", "Embassy", "mocks", "Trump’s", "Space", "Force", "logos", "The", "Russian", "Embassy", "in", "the", "United", "States", "early", "Friday", "morning", "seemingly", "mocked", "President", "Donald", "Trump's", "campaign", "for", "a", "logo", "for", "the", "administration's", "newly", "announced", "\"Space", "Force.\"", "Using", "Trump's", "favorite", "mode", "of", "communicating,", "the", "embassy", "tweeted", "\"Good", "Morning,", "Space", "Forces!\"", "along", "with", "a", "graphic", "of", "a", "rocket", "being", "launched", "and", "features", "the", "Russian", "flag.", "The", "tweet", "also", "links", "to", "a", "Ministry", "of", "Defense", "of", "the", "Russian", "Federation's", "Space", "Forces", "website.", "The", "Space", "Force,", "which", "was", "announced", "Thursday,", "will", "establish", "a", "standalone", "military", "Space", "Force", "by", "2020.", "Vice", "President", "Mike", "Pence", "said", "during", "the", "revealing", "at", "the", "Pentagon", "that", "weapons", "being", "developed", "by", "Russia", "and", "China,", "which", "include", "anti-satellite", "weapons,", "lasers", "and", "hypersonic", "missiles,", "could", "threaten", "U.S.", "reliance", "on", "space", "systems.", "The", "force", "would", "include", "creating", "an", "elite", "group", "of", "space", "troops", "in", "the", "same", "vein", "as", "current", "special", "operations", "forces.", "Trump", "in", "an", "email", "asked", "supporters", "to", "vote", "on", "six", "proposed", "logos,", "which", "almost", "all", "include", "the", "phrase", "\"Space", "Force.\"", "One", "of", "the", "designs,", "however,", "has", "the", "phrase", "\"Mars", "Awaits.\"", "One", "of", "the", "proposals", "has", "also", "been", "criticized", "online", "for", "resembling", "the", "NASA", "logo.", "Trump,", "who", "has", "for", "several", "months", "brought", "up", "the", "idea", "of", "a", "space", "force,", "tweeted", "after", "the", "announcement:", "\"Space", "Force", "all", "the", "way!\"" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "PlayStation", "Vita", "Version", "2", "which", "Plugins", "you", "have", "already", "installed", "on", "your", "PS", "Vita", "directly", "download", "all", "translations", "inside", "of", "Autoplugin", "without", "any", "need", "to", "quit", "the", "App", "Autoplugin", "2", "Unlike", "the", "PlayStation", "4", "with", "it's", "slow", "Homebrew", "Content,", "theIn", "fact,", "we", "still", "see", "today", "new", "plugins", "released", "for", "this", "Handheld", "Console,", "no", "matter", "if", "you", "want", "toto", "make", "your", "favourite", "Games", "even", "better", "performing", "or", "if", "you", "just", "need", "some", "handy", "tools", "like", "an,", "where", "you", "can", "transfer", "your", "favourite", "Games", "and", "other", "Homebrew", "Releases", "on-the-fly.", "But", "installing", "them", "wasn't", "always", "a", "easy", "task", "and", "there", "was", "even", "a", "risk", "when", "adding", "them", "manually,", "which", "could", "harm", "your", "complete", "System", "when", "pressing", "a", "wrong", "button.", "In", "short,", "it", "was", "always", "elaborate", "to", "install", "all", "those", "wonderful", "Plugins", "bit", "by", "bit.", "But", "luckily", "we", "hadfor", "this", "in", "the", "past", "and", "today,", "well-known", "Developertogether", "with", "theare", "releasing,", "where", "not", "only", "you", "can", "now", "see,", "but", "also", "that", "you", "can", "nowas", "it", "was", "necessary", "before.", "Together", "with", "more", "new", "Features", "you", "can", "see", "down", "below", "and", "with", "a", "new", "Design," ] ]
[ [ "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "2", "which", "Plugins", "you", "have", "already", "installed", "on", "your", "PS", "Vita", "directly", "download", "all", "translations", "inside", "of", "Autoplugin", "without", "any", "need", "to", "quit", "the", "App", "Autoplugin", "2", "Unlike", "the", "PlayStation", "4", "with", "it's", "slow", "Homebrew", "Content,", "theIn", "fact,", "we", "still", "see", "today", "new", "plugins", "released", "for", "this", "Handheld", "Console,", "no", "matter", "if", "you", "want", "toto", "make", "your", "favourite", "Games", "even", "better", "performing", "or", "if", "you", "just", "need", "some", "handy", "tools", "like", "an,", "where", "you", "can", "transfer", "your", "favourite", "Games", "and", "other", "Homebrew", "Releases", "on-the-fly.", "But", "installing", "them", "wasn't", "always", "a", "easy", "task", "and", "there", "was", "even", "a", "risk", "when", "adding", "them", "manually,", "which", "could", "harm", "your", "complete", "System", "when", "pressing", "a", "wrong", "button.", "In", "short,", "it", "was", "always", "elaborate", "to", "install", "all", "those", "wonderful", "Plugins", "bit", "by", "bit.", "But", "luckily", "we", "hadfor", "this", "in", "the", "past", "and", "today,", "well-known", "Developertogether", "with", "theare", "releasing,", "where", "not", "only", "you", "can", "now", "see,", "but", "also", "that", "you", "can", "nowas", "it", "was", "necessary", "before.", "Together", "with", "more", "new", "Features", "you", "can", "see", "down", "below", "and", "with", "a", "new", "Design," ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "In", "the", "Book", "of", "Mormon,", "the", "Lord", "asks", "His", "children", "to", "remember", "the", "captivity", "and", "miraculous", "deliverance", "of", "His", "covenant", "people.", "The", "second", "in", "the", "series", "of", "narrative", "Church", "history", "volumes", "“has", "its", "own", "stories", "of", "captivity", "and", "deliverance", "to", "tell,”", "said", "Jed", "Woodworth,", "managing", "historian", "and", "general", "editor", "of", "“Saints:", "The", "Story", "of", "the", "Church", "of", "Jesus", "Christ", "in", "the", "Latter", "Days,", "volume", "2,", "No", "Unhallowed", "Hand.”", "The", "first", "chapters", "of", "the", "narrative", "are", "now", "available", "at", "saints.ChurchofJesusChrist.org", "and", "in", "the", "Church", "History", "section", "of", "the", "Gospel", "Library", "app.", "Subsequent", "chapters", "will", "be", "posted", "each", "month", "until", "the", "entire", "volume", "is", "published", "digitally", "and", "in", "print", "in", "February", "2020.", "Woodworth", "said", "the", "volume", "details", "the", "story", "of", "captivity", "and", "deliverance", "as", "Church", "members", "are", "driven", "from", "Nauvoo", "and", "settle", "in", "the", "Salt", "Lake", "Valley", "from", "1847", "to", "1893.", "“The", "Saints", "are", "captive", "to", "punitive", "judges", "and", "laws;", "they", "are", "imprisoned", "by", "the", "caprice", "of", "famine", "and", "pestilence;", "by", "the", "sorrows", "of", "poverty", "and", "separation", "and", "death;", "and", "by", "their", "own", "weaknesses", "and", "frailties", "and", "sins,”", "said", "Woodworth.", "“Through", "it", "all,", "the", "Lord", "stands", "by", "His", "people,", "upholding", "them", "and", "ultimately", "redeeming", "them.”", "Pioneers", "trek", "across", "the", "wilderness", "with", "covered", "wagons", "and", "handcarts.", "Credit:", "Intellectual", "Reserve,", "Inc.", "The", "Saints", "do", "their", "part", "as", "well,", "he", "continued.", "“They", "gather", "Saints", "by", "the", "thousands,", "found", "hundreds", "of", "thriving", "settlements,", "weld", "a", "diverse", "emigration", "population", "together", "and", "launch", "new", "institutions", "like", "Sunday", "School,", "Young", "Women", "and", "Young", "Men", "and", "Primary.", "During", "the", "worst", "of", "their", "trials,", "they", "build", "three", "temples,", "culminating", "in", "the", "dedication", "of", "the", "Salt", "Lake", "Temple", "after", "40", "long", "years", "of", "construction.”", "This", "volume", "reminds", "Church", "members", "that", "opposition", "is", "more", "the", "regular", "course", "of", "things", "than", "the", "exception,", "Woodworth", "said.", "“The", "Lord", "will", "have", "a", "tried", "and", "tested", "people,", "and", "volume", "2", "shows", "us", "how", "it", "happens.”", "“Saints,", "volume", "2”", "also", "explores", "how", "the", "Church", "fought", "for", "and", "ultimately", "gave", "up", "one", "of", "the", "most", "difficult", "of", "all", "Church", "practices,", "plural", "marriage,", "said", "Woodworth.", "“We", "see", "the", "sacrifices", "of", "families", "and", "Church", "leaders", "for", "a", "principle", "that", "went", "against", "all", "their", "religious", "training", "and", "cultural", "inheritance,”", "he", "explained.", "“We", "see", "the", "agony", "and", "loneliness", "of", "life", "in", "the", "principle,", "but", "also", "the", "ecstasy", "and", "joy", "of", "carrying", "out", "God’s", "commands", "by", "raising", "up", "seed", "unto", "Him.”", "The", "volume", "also", "takes", "Church", "members", "“into", "the", "deepest", "recesses", "of", "sin", "by", "narrating", "the", "great", "tragedy", "of", "our", "past,", "the", "Mountain", "Meadows", "Massacre.”", "More", "than", "1", "million", "readers", "Scott", "Hales,", "general", "editor", "and", "writer", "of", "“Saints", "volume", "2”", "said", "those", "working", "on", "the", "project", "hoped", "the", "first", "volume", "would", "be", "well", "received", "among", "Church", "members.", "“But", "I", "don’t", "think", "any", "of", "us", "expected", "such", "a", "positive", "response", "to", "the", "book,”", "he", "said.", "“In", "less", "than", "a", "year,", "more", "than", "400,000", "copies", "of", "volume", "1", "have", "been", "sold.", "More", "than", "one", "million", "people", "are", "reading", "it", "on", "the", "Gospel", "Library", "app,", "and", "hundreds", "of", "thousands", "of", "people", "are", "listening", "to", "the", "audiobook,", "reading", "the", "Church", "History", "Topics", "articles", "associated", "with", "the", "volume,", "and", "tuning", "into", "the", "Mormon", "Channel’s", "‘Saints’", "podcast.”", "Hales", "said", "volume", "2", "is", "similar", "in", "length,", "format", "and", "style", "to", "volume", "1.", "“Readers", "who", "liked", "volume", "1", "will", "like", "volume", "2,”", "he", "said.", "“In", "fact,", "they", "might", "like", "it", "more.”", "The", "first", "chapters", "of", "Saints:", "The", "Story", "of", "the", "Church", "of", "Jesus", "Christ", "in", "the", "Latter", "Days,", "volume", "2,", "No", "Unhallowed", "Hand", "are", "now", "available", "at", "saints.ChurchofJesusChrist.org", "and", "in", "the", "Church", "History", "section", "of", "the", "Gospel", "Library", "app.", "Subsequent", "chapters", "will", "be", "posted", "each", "month", "until", "the", "entire", "volume", "is", "published", "digitally", "and", "in", "print", "in", "February", "2020.", "Credit:", "Intellectual", "Reserve,", "Inc.", "He", "called", "the", "scope", "of", "volume", "2", "“epic", "—", "more", "epic", "than", "volume", "1.”", "But,", "the", "narrative", "is", "filled", "with", "intimate,", "character-driven", "stories", "about", "the", "restoration.", "Volume", "2", "picks", "up", "right", "where", "volume", "1", "ends,", "he", "said.", "“It", "tells", "the", "story", "of", "the", "early", "Saints", "efforts", "to", "establish", "a", "place", "where", "they", "can", "worship", "God", "and", "build", "temples", "without", "fear", "of", "persecution.”", "The", "Church", "does", "not", "often", "talk", "in", "detail", "about", "what", "happened", "after", "the", "Saints", "arrived", "in", "the", "Salt", "Lake", "Valley.", "“Many", "Church", "members", "know", "it", "took", "the", "Saints", "40", "years", "to", "build", "the", "Salt", "Lake", "Temple,", "but", "they", "often", "don’t", "know", "why,”", "he", "said.", "“And", "they", "don’t", "know", "what", "else", "happened", "during", "those", "40", "years.”", "“Saints,", "volume", "2”", "seeks", "to", "recover", "these", "stories", "and", "make", "them", "part", "of", "the", "Latter-day", "Saint", "collective", "memory." ], [ "“More", "than", "anything", "else,", "we", "hope", "volume", "2", "testifies", "to", "Church", "members", "of", "the", "reality", "of", "the", "ongoing", "restoration", "of", "the", "gospel", "of", "Christ.", "The", "death", "of", "Joseph", "Smith", "did", "not", "bring", "an", "end", "to", "the", "Lord’s", "revelatory", "interventions", "into", "the", "lives", "of", "the", "Saints.", "Volume", "2", "continues", "to", "show", "a", "living", "God", "guiding", "His", "people", "to", "their", "heavenly", "home.”", "Just", "as", "is", "volume", "1,", "volume", "2", "will", "be", "translated,", "said", "Lisa", "Olsen", "Tait,", "general", "editor", "of", "volume", "2.", "“Part", "of", "the", "mandate", "from", "the", "First", "Presidency", "for", "this", "project", "is", "that", "it", "needs", "to", "be", "made", "available", "to", "as", "many", "of", "the", "members", "of", "the", "Church", "as", "possible", "in", "their", "own", "language.", "“As", "Latter-day", "Saints,", "we", "are", "all", "part", "of", "the", "Church", "and", "the", "family", "of", "God.", "These", "books", "give", "us", "a", "shared", "story,", "and", "a", "shared", "vision,", "of", "what", "that", "means.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "de", "de", "de", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "In", "the", "Book", "of", "Mormon,", "the", "Lord", "asks", "His", "children", "to", "remember", "the", "captivity", "and", "miraculous", "deliverance", "of", "His", "covenant", "people.", "The", "second", "in", "the", "series", "of", "narrative", "Church", "history", "volumes", "“has", "its", "own", "stories", "of", "captivity", "and", "deliverance", "to", "tell,”", "said", "Jed", "Woodworth,", "managing", "historian", "and", "general", "editor", "of", "“Saints:", "The", "Story", "of", "the", "Church", "of", "Jesus", "Christ", "in", "the", "Latter", "Days,", "volume", "2,", "No", "Unhallowed", "Hand.”", "The", "first", "chapters", "of", "the", "narrative", "are", "now", "available", "at", "saints.ChurchofJesusChrist.org", "and", "in", "the", "Church", "History", "section", "of", "the", "Gospel", "Library", "app.", "Subsequent", "chapters", "will", "be", "posted", "each", "month", "until", "the", "entire", "volume", "is", "published", "digitally", "and", "in", "print", "in", "February", "2020.", "Woodworth", "said", "the", "volume", "details", "the", "story", "of", "captivity", "and", "deliverance", "as", "Church", "members", "are", "driven", "from", "Nauvoo", "and", "settle", "in", "the", "Salt", "Lake", "Valley", "from", "1847", "to", "1893.", "“The", "Saints", "are", "captive", "to", "punitive", "judges", "and", "laws;", "they", "are", "imprisoned", "by", "the", "caprice", "of", "famine", "and", "pestilence;", "by", "the", "sorrows", "of", "poverty", "and", "separation", "and", "death;", "and", "by", "their", "own", "weaknesses", "and", "frailties", "and", "sins,”", "said", "Woodworth.", "“Through", "it", "all,", "the", "Lord", "stands", "by", "His", "people,", "upholding", "them", "and", "ultimately", "redeeming", "them.”", "Pioneers", "trek", "across", "the", "wilderness", "with", "covered", "wagons", "and", "handcarts.", "Credit:", "Intellectual", "Reserve,", "Inc.", "The", "Saints", "do", "their", "part", "as", "well,", "he", "continued.", "“They", "gather", "Saints", "by", "the", "thousands,", "found", "hundreds", "of", "thriving", "settlements,", "weld", "a", "diverse", "emigration", "population", "together", "and", "launch", "new", "institutions", "like", "Sunday", "School,", "Young", "Women", "and", "Young", "Men", "and", "Primary.", "During", "the", "worst", "of", "their", "trials,", "they", "build", "three", "temples,", "culminating", "in", "the", "dedication", "of", "the", "Salt", "Lake", "Temple", "after", "40", "long", "years", "of", "construction.”", "This", "volume", "reminds", "Church", "members", "that", "opposition", "is", "more", "the", "regular", "course", "of", "things", "than", "the", "exception,", "Woodworth", "said.", "“The", "Lord", "will", "have", "a", "tried", "and", "tested", "people,", "and", "volume", "2", "shows", "us", "how", "it", "happens.”", "“Saints,", "volume", "2”", "also", "explores", "how", "the", "Church", "fought", "for", "and", "ultimately", "gave", "up", "one", "of", "the", "most", "difficult", "of", "all", "Church", "practices,", "plural", "marriage,", "said", "Woodworth.", "“We", "see", "the", "sacrifices", "of", "families", "and", "Church", "leaders", "for", "a", "principle", "that", "went", "against", "all", "their", "religious", "training", "and", "cultural", "inheritance,”", "he", "explained.", "“We", "see", "the", "agony", "and", "loneliness", "of", "life", "in", "the", "principle,", "but", "also", "the", "ecstasy", "and", "joy", "of", "carrying", "out", "God’s", "commands", "by", "raising", "up", "seed", "unto", "Him.”", "The", "volume", "also", "takes", "Church", "members", "“into", "the", "deepest", "recesses", "of", "sin", "by", "narrating", "the", "great", "tragedy", "of", "our", "past,", "the", "Mountain", "Meadows", "Massacre.”", "More", "than", "1", "million", "readers", "Scott", "Hales,", "general", "editor", "and", "writer", "of", "“Saints", "volume", "2”", "said", "those", "working", "on", "the", "project", "hoped", "the", "first", "volume", "would", "be", "well", "received", "among", "Church", "members.", "“But", "I", "don’t", "think", "any", "of", "us", "expected", "such", "a", "positive", "response", "to", "the", "book,”", "he", "said.", "“In", "less", "than", "a", "year,", "more", "than", "400,000", "copies", "of", "volume", "1", "have", "been", "sold.", "More", "than", "one", "million", "people", "are", "reading", "it", "on", "the", "Gospel", "Library", "app,", "and", "hundreds", "of", "thousands", "of", "people", "are", "listening", "to", "the", "audiobook,", "reading", "the", "Church", "History", "Topics", "articles", "associated", "with", "the", "volume,", "and", "tuning", "into", "the", "Mormon", "Channel’s", "‘Saints’", "podcast.”", "Hales", "said", "volume", "2", "is", "similar", "in", "length,", "format", "and", "style", "to", "volume", "1.", "“Readers", "who", "liked", "volume", "1", "will", "like", "volume", "2,”", "he", "said.", "“In", "fact,", "they", "might", "like", "it", "more.”", "The", "first", "chapters", "of", "Saints:", "The", "Story", "of", "the", "Church", "of", "Jesus", "Christ", "in", "the", "Latter", "Days,", "volume", "2,", "No", "Unhallowed", "Hand", "are", "now", "available", "at", "saints.ChurchofJesusChrist.org", "and", "in", "the", "Church", "History", "section", "of", "the", "Gospel", "Library", "app.", "Subsequent", "chapters", "will", "be", "posted", "each", "month", "until", "the", "entire", "volume", "is", "published", "digitally", "and", "in", "print", "in", "February", "2020.", "Credit:", "Intellectual", "Reserve,", "Inc.", "He", "called", "the", "scope", "of", "volume", "2", "“epic", "—", "more", "epic", "than", "volume", "1.”", "But,", "the", "narrative", "is", "filled", "with", "intimate,", "character-driven", "stories", "about", "the", "restoration.", "Volume", "2", "picks", "up", "right", "where", "volume", "1", "ends,", "he", "said.", "“It", "tells", "the", "story", "of", "the", "early", "Saints", "efforts", "to", "establish", "a", "place", "where", "they", "can", "worship", "God", "and", "build", "temples", "without", "fear", "of", "persecution.”", "The", "Church", "does", "not", "often", "talk", "in", "detail", "about", "what", "happened", "after", "the", "Saints", "arrived", "in", "the", "Salt", "Lake", "Valley.", "“Many", "Church", "members", "know", "it", "took", "the", "Saints", "40", "years", "to", "build", "the", "Salt", "Lake", "Temple,", "but", "they", "often", "don’t", "know", "why,”", "he", "said.", "“And", "they", "don’t", "know", "what", "else", "happened", "during", "those", "40", "years.”", "“Saints,", "volume", "2”", "seeks", "to", "recover", "these", "stories", "and", "make", "them", "part", "of", "the", "Latter-day", "Saint", "collective", "memory." ] ], [ [ "“More", "than", "anything", "else,", "we", "hope", "volume", "2", "testifies", "to", "Church", "members", "of", "the", "reality", "of", "the", "ongoing", "restoration", "of", "the", "gospel", "of", "Christ.", "The", "death", "of", "Joseph", "Smith", "did", "not", "bring", "an", "end", "to", "the", "Lord’s", "revelatory", "interventions", "into", "the", "lives", "of", "the", "Saints.", "Volume", "2", "continues", "to", "show", "a", "living", "God", "guiding", "His", "people", "to", "their", "heavenly", "home.”", "Just", "as", "is", "volume", "1,", "volume", "2", "will", "be", "translated,", "said", "Lisa", "Olsen", "Tait,", "general", "editor", "of", "volume", "2.", "“Part", "of", "the", "mandate", "from", "the", "First", "Presidency", "for", "this", "project", "is", "that", "it", "needs", "to", "be", "made", "available", "to", "as", "many", "of", "the", "members", "of", "the", "Church", "as", "possible", "in", "their", "own", "language.", "“As", "Latter-day", "Saints,", "we", "are", "all", "part", "of", "the", "Church", "and", "the", "family", "of", "God.", "These", "books", "give", "us", "a", "shared", "story,", "and", "a", "shared", "vision,", "of", "what", "that", "means.”" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "A", "man", "was", "found", "taking", "a", "nap", "inside", "the", "Louisiana", "governor's", "mansion.", "Here's", "what", "we", "know", "According", "to", "Louisiana", "State", "Police,", "Reynard", "Green", "was", "arrested", "April", "17", "before", "6", "a.m.", "after", "he", "was", "discovered", "sleeping", "on", "a", "couch", "inside", "the", "mansion.", "He", "is", "accused", "of", "also", "breaking", "an", "antique", "table", "while", "inside", "the", "building,", "according", "to", "the", "New", "York", "Times.", "It", "is", "not", "clear", "how", "Green", "got", "inside", "the", "building,", "or", "where", "Gov.", "John", "Bel", "Edwards", "(D)", "was", "at", "the", "time.", "The", "Louisiana", "State", "Police's", "Protective", "Services", "Unit", "claims", "that", "\"Louisiana", "State", "Police", "troopers", "and", "Department", "of", "Public", "Safety", "officers", "are", "assigned", "to", "the", "Governor's", "Mansion", "24", "hours", "a", "day,", "year-round", "and", "are", "responsible", "for", "the", "physical", "protection", "of", "the", "Mansion", "and", "its", "grounds.\"", "Edwards", "has", "not", "said", "whether", "he", "or", "his", "wife", "were", "in", "the", "mansion", "at", "the", "time.", "He", "told", "the", "media", "on", "Tuesday", "that", "he", "couldn't", "\"address", "any", "specific", "information", "relative\"", "to", "this", "case.", "\"It's", "still", "an", "open", "investigation", "the", "State", "Police", "is", "conducting,", "and", "I", "will", "just", "say", "that", "I", "appreciate", "all", "the", "work", "that", "they", "do", "to", "keep", "me", "and", "my", "family", "safe.", "At", "no", "time", "were", "we", "anything", "other", "than", "safe,\"", "Edwards", "said.", "The", "police", "found", "synthetic", "marijuana", "in", "Green's", "pocket.", "When", "he", "was", "taken", "to", "the", "police", "station", "for", "processing,", "he", "reportedly", "tried", "to", "hit", "a", "sergeant", "and", "an", "officer,", "and", "steal", "a", "sergeant's", "service", "weapon.", "The", "sergeant", "reported", "that", "he", "was", "\"able", "to", "stop", "Green", "from", "attempting", "to", "disarm", "me", "with", "a", "right", "elbow", "strike", "to", "the", "face.\"", "Green", "was", "charged", "with", "simple", "burglary,", "criminal", "trespass,", "and", "criminal", "damage", "to", "property.", "What", "else?", "According", "to", "the", "Associated", "Press,", "when", "state", "Senate", "President", "John", "Alario", "(R)", "heard", "about", "the", "intrusion,", "he", "quipped", "that", "he", "was", "surprised", "to", "hear", "about", "the", "incident", "since", "security", "had", "been", "increased", "at", "the", "mansion", "recently,", "adding", "jokingly", "that", "he", "even", "had", "\"to", "give", "a", "secret", "handshake\"", "to", "get", "inside." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "A", "man", "was", "found", "taking", "a", "nap", "inside", "the", "Louisiana", "governor's", "mansion.", "Here's", "what", "we", "know", "According", "to", "Louisiana", "State", "Police,", "Reynard", "Green", "was", "arrested", "April", "17", "before", "6", "a.m.", "after", "he", "was", "discovered", "sleeping", "on", "a", "couch", "inside", "the", "mansion.", "He", "is", "accused", "of", "also", "breaking", "an", "antique", "table", "while", "inside", "the", "building,", "according", "to", "the", "New", "York", "Times.", "It", "is", "not", "clear", "how", "Green", "got", "inside", "the", "building,", "or", "where", "Gov.", "John", "Bel", "Edwards", "(D)", "was", "at", "the", "time.", "The", "Louisiana", "State", "Police's", "Protective", "Services", "Unit", "claims", "that", "\"Louisiana", "State", "Police", "troopers", "and", "Department", "of", "Public", "Safety", "officers", "are", "assigned", "to", "the", "Governor's", "Mansion", "24", "hours", "a", "day,", "year-round", "and", "are", "responsible", "for", "the", "physical", "protection", "of", "the", "Mansion", "and", "its", "grounds.\"", "Edwards", "has", "not", "said", "whether", "he", "or", "his", "wife", "were", "in", "the", "mansion", "at", "the", "time.", "He", "told", "the", "media", "on", "Tuesday", "that", "he", "couldn't", "\"address", "any", "specific", "information", "relative\"", "to", "this", "case.", "\"It's", "still", "an", "open", "investigation", "the", "State", "Police", "is", "conducting,", "and", "I", "will", "just", "say", "that", "I", "appreciate", "all", "the", "work", "that", "they", "do", "to", "keep", "me", "and", "my", "family", "safe.", "At", "no", "time", "were", "we", "anything", "other", "than", "safe,\"", "Edwards", "said.", "The", "police", "found", "synthetic", "marijuana", "in", "Green's", "pocket.", "When", "he", "was", "taken", "to", "the", "police", "station", "for", "processing,", "he", "reportedly", "tried", "to", "hit", "a", "sergeant", "and", "an", "officer,", "and", "steal", "a", "sergeant's", "service", "weapon.", "The", "sergeant", "reported", "that", "he", "was", "\"able", "to", "stop", "Green", "from", "attempting", "to", "disarm", "me", "with", "a", "right", "elbow", "strike", "to", "the", "face.\"", "Green", "was", "charged", "with", "simple", "burglary,", "criminal", "trespass,", "and", "criminal", "damage", "to", "property.", "What", "else?", "According", "to", "the", "Associated", "Press,", "when", "state", "Senate", "President", "John", "Alario", "(R)", "heard", "about", "the", "intrusion,", "he", "quipped", "that", "he", "was", "surprised", "to", "hear", "about", "the", "incident", "since", "security", "had", "been", "increased", "at", "the", "mansion", "recently,", "adding", "jokingly", "that", "he", "even", "had", "\"to", "give", "a", "secret", "handshake\"", "to", "get", "inside." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Formerly", "a", "part", "of", "the", "Soviet", "Union,", "Kyrgyzstan", "is", "a", "landlocked", "country", "in", "Central", "Asia.", "Although", "like", "everywhere", "many", "people", "here", "also", "have", "adopted", "to", "modern", "ways", "of", "living", "but", "due", "to", "its", "geography,", "most", "of", "the", "traditional", "side", "of", "the", "Kyrgyz", "culture", "is", "still", "intact.", "Majestic", "mountains", "and", "crystal", "clear", "water", "of", "its", "lakes", "make", "you", "think", "that", "if", "there", "is", "a", "heaven", "above,", "it", "would", "be", "just", "like", "this.", "If", "you", "want", "to", "experience", "nature", "and", "adventure", "at", "its", "best", "check", "out", "our", "list", "of", "the", "top", "10", "things", "to", "do", "in", "Kyrgyzstan", "Booking.com", "Issyk-Kol", "Lake", "1", "Issyk-kol", "is", "Kyrgyzstan’s", "largest", "and", "one", "of", "the", "largest", "lakes", "in", "the", "world.", "Issyk-kol", "means", "‘Warm", "water’,", "it", "got", "the", "name", "because", "of", "its", "water", "that", "never", "freezes", "although", "the", "lake", "is", "surrounded", "by", "snow-capped", "mountains.", "The", "coast", "is", "famous", "for", "its", "exceptional", "landscape", "and", "particular", "maritime", "climate.", "It", "is", "also", "the", "largest", "health", "resort", "zone", "in", "Central", "Asia,", "with", "numerous", "health", "resorts,", "hotels,", "and", "private", "guest", "houses,", "making", "it", "a", "top", "destination.", "Issyk-Kul", "Lake,", "Kyrgyzstan", "–", "by", "Ninara/Flickr.com", "Ala", "Archa", "National", "Park", "2", "If", "you", "love", "hiking", "and", "fancy", "adventure", "this", "is", "the", "place", "for", "you.", "located", "at", "an", "altitude", "of", "1500-4895", "above", "sea", "level,", "Ala", "Archa", "includes", "all", "landscapes", "and", "is", "a", "favorite", "destination", "of", "Picnikers,", "Hikers,", "Skiers", "as", "well", "as", "Mountain", "climbers", "looking", "for", "rock,", "ice", "and", "mixed", "routes.", "Ala", "Archa", "National", "Park,", "Kyrgyzstan", "–", "by", "Thomas", "Depenbusch(Depi):Flickr", "Song-Kol", "Lake", "3", "Song-Kol", "Lake", "is", "the", "largest", "freshwater", "lake", "and", "2nd", "largest", "lake", "after", "Issyk-Kol,", "Song-Kol", "is", "located", "in", "the", "Southwestern", "part", "of", "the", "Naryn", "province.", "In", "contrast", "to", "Issyk-kol", "this", "lake", "stays", "freeze", "most", "of", "the", "year.", "The", "astonishing", "meadows", "around", "the", "lake", "make", "it", "a", "perfect", "place", "to", "visit", "in", "summer.", "Song-Kol", "Lake,", "Kyrgyzstan", "–", "by", "Sathish", "J:", "Flickr", "Song-Kol", "Lake,", "Kyrgyzstan", "–", "by", "Sathish", "J:Flickr", "Sulaiman-Too", "Mountain", "4", "Sulaiman-Too", "is", "the", "first", "UNESCO", "world", "heritage", "site", "listed", "from", "Kyrgyzstan.", "It", "is", "one", "of", "those", "places", "where", "you", "go", "and", "experience", "a", "whole", "new", "prospect", "of", "human", "evolution", "and", "history", "on", "earth.", "Ancient", "carvings", "and", "mosques,", "now", "turned", "into", "museums", "with", "a", "rich", "collection", "of", "archaeological,", "ethnographic,", "and", "zoological", "exhibits", "can", "be", "found", "here.", "Sulaiman-Too", "Sacred", "Mountain", "–", "by", "Mark", "Horrell:Flickr", "Burana", "Tower", "5", "This", "fascinating", "structure", "was", "once", "a", "minaret", "of", "a", "mosque,", "which", "gives", "you", "a", "glimpse", "of", "medieval", "Islam", "in", "the", "region.", "The", "tower,", "when", "built", "was", "a", "45", "meters", "tall", "structure,", "now", "it’s", "just", "25", "meters,", "due", "to", "an", "earthquake", "in", "the", "15th", "century", "some", "portion", "of", "the", "tower", "got", "destroyed.", "An", "open-air", "archaeological", "and", "architectural", "museum", "is", "also", "located", "here.", "Burana", "Tower,", "Kyrgyzstan", "–", "by", "Maureen", "Barlin", ":", "Flickr", "Fairy", "Tale", "Canyon", "6", "No,", "it’s", "not", "grand", "canyon", "from", "America,", "It’s", "Fairy", "Tale", "from", "Skaza", "Canyon.", "A", "true", "wonder", "of", "nature,", "A", "view", "that", "makes", "you", "think,", "‘Are", "we", "still", "on", "planet", "earth?’.", "Located", "on", "the", "southern", "shore", "of", "Issyk-Kul", "Lake,", "4", "km", "from", "Tosor", "village.", "Fairy", "Tale", "Canyon,", "Kyrgyzstan", "Fairy", "Tale", "Canyon,", "Kyrgyzstan", "Lake", "Sary-Chelek", "7", "This", "gem", "of", "nature", "is", "located", "500", "km", "from", "the", "Bishkek", "and", "300", "km", "from", "Osh.", "With", "a", "depth", "of", "243", "meters", "it", "is", "the", "2nd", "deepest", "lake", "in", "Kyrgyzstan", "and", "the", "3rd", "deepest", "in", "Asia.", "Its", "coastline", "is", "covered", "with", "dense", "forest", "and", "rocky", "mountains", "which", "makes", "it", "very", "unique", "compare", "to", "other", "lakes", "in", "the", "country.", "Lake", "Sary-Chelek,", "Kyrgyzstan", "–", "by", "©FAO:Richard", "Slaby:Flickr", "Uzgen", "Minaret", "8", "Uzgen", "Minaret", "is", "located", "in", "the", "town", "of", "Uzgen,", "which", "was", "the", "capital", "of", "the", "region", "in", "the", "12th", "century,", "The", "structure", "also", "dates", "back", "to", "the", "11th-12th", "century.", "It", "was", "used", "to", "call", "people", "for", "prayer", "and", "as", "a", "watchtower", "for", "the", "town.", "Like", "Burana", "tower,", "this", "also", "has", "lost", "its", "original", "height", "to", "an", "earthquake.", "Uzgen", "Minaret,", "Kyrgyzstan", "–", "by", "Ninara:Flickr", "Chunkurchak", "Ski", "Resort", "9", "If", "you", "love", "skiing,", "this", "is", "the", "place", "for", "you.", "30" ], [ "km", "from", "the", "capital", "this", "is", "a", "modern", "and", "very", "well", "developed", "ski", "resort", "for", "tourists.", "Facilities", "such", "as", "cafes,", "sports", "equipment", "rental,", "medical", "centers", "and", "playgrounds", "for", "children", "makes", "this", "place", "a", "very", "family", "friendly.", "The", "resort", "stays", "open", "throughout", "the", "winter", "from", "December", "to", "March.", "Chunkurchak", "SKI", "Resort,", "Kyrgyzstan", "–", "by", "Janezdrilc:Wikimedia", "Hunting", "With", "Eagles", "10", "While", "you", "are", "in", "Kyrgyzstan,", "do", "not", "miss", "the", "experience", "of", "hunting", "with", "falcons.", "Kyrgyzstan", "is", "one", "of", "the", "fewest", "places", "on", "earth", "where", "hunting", "with", "eagles", "is", "still", "practiced.", "This", "particular", "style", "of", "hunting", "requires", "a", "lot", "of", "training", "for", "eagles", "and", "is", "a", "time-consuming", "hobby.", "To", "protect", "this", "art,", "competitions", "are", "held", "between", "the", "falconers", "every", "year.", "You", "can", "enjoy", "these", "shows", "which", "are", "arranged", "individually", "for", "guests", "and", "tourists", "in", "Issyk", "Kul,", "Naryn", "and", "areas", "nearby", "Bishkek.", "Hunting", "With", "Eagles,", "Kyrgyzstan", "–", "by", "Laurent", "de", "Walick:Flickr", "Just", "So", "You", "Know:" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Formerly", "a", "part", "of", "the", "Soviet", "Union,", "Kyrgyzstan", "is", "a", "landlocked", "country", "in", "Central", "Asia.", "Although", "like", "everywhere", "many", "people", "here", "also", "have", "adopted", "to", "modern", "ways", "of", "living", "but", "due", "to", "its", "geography,", "most", "of", "the", "traditional", "side", "of", "the", "Kyrgyz", "culture", "is", "still", "intact.", "Majestic", "mountains", "and", "crystal", "clear", "water", "of", "its", "lakes", "make", "you", "think", "that", "if", "there", "is", "a", "heaven", "above,", "it", "would", "be", "just", "like", "this.", "If", "you", "want", "to", "experience", "nature", "and", "adventure", "at", "its", "best", "check", "out", "our", "list", "of", "the", "top", "10", "things", "to", "do", "in", "Kyrgyzstan", "Booking.com", "Issyk-Kol", "Lake", "1", "Issyk-kol", "is", "Kyrgyzstan’s", "largest", "and", "one", "of", "the", "largest", "lakes", "in", "the", "world.", "Issyk-kol", "means", "‘Warm", "water’,", "it", "got", "the", "name", "because", "of", "its", "water", "that", "never", "freezes", "although", "the", "lake", "is", "surrounded", "by", "snow-capped", "mountains.", "The", "coast", "is", "famous", "for", "its", "exceptional", "landscape", "and", "particular", "maritime", "climate.", "It", "is", "also", "the", "largest", "health", "resort", "zone", "in", "Central", "Asia,", "with", "numerous", "health", "resorts,", "hotels,", "and", "private", "guest", "houses,", "making", "it", "a", "top", "destination.", "Issyk-Kul", "Lake,", "Kyrgyzstan", "–", "by", "Ninara/Flickr.com", "Ala", "Archa", "National", "Park", "2", "If", "you", "love", "hiking", "and", "fancy", "adventure", "this", "is", "the", "place", "for", "you.", "located", "at", "an", "altitude", "of", "1500-4895", "above", "sea", "level,", "Ala", "Archa", "includes", "all", "landscapes", "and", "is", "a", "favorite", "destination", "of", "Picnikers,", "Hikers,", "Skiers", "as", "well", "as", "Mountain", "climbers", "looking", "for", "rock,", "ice", "and", "mixed", "routes.", "Ala", "Archa", "National", "Park,", "Kyrgyzstan", "–", "by", "Thomas", "Depenbusch(Depi):Flickr", "Song-Kol", "Lake", "3", "Song-Kol", "Lake", "is", "the", "largest", "freshwater", "lake", "and", "2nd", "largest", "lake", "after", "Issyk-Kol,", "Song-Kol", "is", "located", "in", "the", "Southwestern", "part", "of", "the", "Naryn", "province.", "In", "contrast", "to", "Issyk-kol", "this", "lake", "stays", "freeze", "most", "of", "the", "year.", "The", "astonishing", "meadows", "around", "the", "lake", "make", "it", "a", "perfect", "place", "to", "visit", "in", "summer.", "Song-Kol", "Lake,", "Kyrgyzstan", "–", "by", "Sathish", "J:", "Flickr", "Song-Kol", "Lake,", "Kyrgyzstan", "–", "by", "Sathish", "J:Flickr", "Sulaiman-Too", "Mountain", "4", "Sulaiman-Too", "is", "the", "first", "UNESCO", "world", "heritage", "site", "listed", "from", "Kyrgyzstan.", "It", "is", "one", "of", "those", "places", "where", "you", "go", "and", "experience", "a", "whole", "new", "prospect", "of", "human", "evolution", "and", "history", "on", "earth.", "Ancient", "carvings", "and", "mosques,", "now", "turned", "into", "museums", "with", "a", "rich", "collection", "of", "archaeological,", "ethnographic,", "and", "zoological", "exhibits", "can", "be", "found", "here.", "Sulaiman-Too", "Sacred", "Mountain", "–", "by", "Mark" ], [ "Burana", "Tower", "5", "This", "fascinating", "structure", "was", "once", "a", "minaret", "of", "a", "mosque,", "which", "gives", "you", "a", "glimpse", "of", "medieval", "Islam", "in", "the", "region.", "The", "tower,", "when", "built", "was", "a", "45", "meters", "tall", "structure,", "now", "it’s", "just", "25", "meters,", "due", "to", "an", "earthquake", "in", "the", "15th", "century", "some", "portion", "of", "the", "tower", "got", "destroyed.", "An", "open-air", "archaeological", "and", "architectural", "museum", "is", "also", "located", "here.", "Burana", "Tower,", "Kyrgyzstan", "–", "by", "Maureen", "Barlin", ":", "Flickr", "Fairy", "Tale", "Canyon", "6", "No,", "it’s", "not", "grand", "canyon", "from", "America,", "It’s", "Fairy", "Tale", "from", "Skaza", "Canyon.", "A", "true", "wonder", "of", "nature,", "A", "view", "that", "makes", "you", "think,", "‘Are", "we", "still", "on", "planet", "earth?’.", "Located", "on", "the", "southern", "shore", "of", "Issyk-Kul", "Lake,", "4", "km", "from", "Tosor", "village.", "Fairy", "Tale", "Canyon,", "Kyrgyzstan", "Fairy", "Tale", "Canyon,", "Kyrgyzstan", "Lake", "Sary-Chelek", "7", "This", "gem", "of", "nature", "is", "located", "500", "km", "from", "the", "Bishkek", "and", "300", "km", "from", "Osh.", "With", "a", "depth", "of", "243", "meters", "it", "is", "the", "2nd", "deepest", "lake", "in", "Kyrgyzstan", "and", "the", "3rd", "deepest", "in", "Asia.", "Its", "coastline", "is", "covered", "with", "dense", "forest", "and", "rocky", "mountains", "which", "makes", "it", "very", "unique", "compare", "to", "other", "lakes", "in", "the", "country.", "Lake", "Sary-Chelek,", "Kyrgyzstan", "–", "by", "©FAO:Richard", "Slaby:Flickr", "Uzgen", "Minaret", "8", "Uzgen", "Minaret", "is", "located", "in", "the", "town", "of", "Uzgen,", "which", "was", "the", "capital", "of", "the", "region", "in", "the", "12th", "century,", "The", "structure", "also", "dates", "back", "to", "the", "11th-12th", "century.", "It", "was", "used", "to", "call", "people", "for", "prayer", "and", "as", "a", "watchtower", "for", "the", "town.", "Like", "Burana", "tower,", "this", "also", "has", "lost", "its", "original", "height", "to", "an", "earthquake.", "Uzgen", "Minaret,", "Kyrgyzstan", "–", "by", "Ninara:Flickr", "Chunkurchak", "Ski", "Resort", "9", "If", "you", "love", "skiing,", "this", "is", "the", "place", "for", "you.", "30" ] ], [ [ "km", "from", "the", "capital", "this", "is", "a", "modern", "and", "very", "well", "developed", "ski", "resort", "for", "tourists.", "Facilities", "such", "as", "cafes,", "sports", "equipment", "rental,", "medical", "centers", "and", "playgrounds", "for", "children", "makes", "this", "place", "a", "very", "family", "friendly.", "The", "resort", "stays", "open", "throughout", "the", "winter", "from", "December", "to", "March.", "Chunkurchak", "SKI", "Resort,", "Kyrgyzstan", "–", "by", "Janezdrilc:Wikimedia", "Hunting", "With", "Eagles", "10", "While", "you", "are", "in", "Kyrgyzstan,", "do", "not", "miss", "the", "experience", "of", "hunting", "with", "falcons.", "Kyrgyzstan", "is", "one", "of", "the", "fewest", "places", "on", "earth", "where", "hunting", "with", "eagles", "is", "still", "practiced.", "This", "particular", "style", "of", "hunting", "requires", "a", "lot", "of", "training", "for", "eagles", "and", "is", "a", "time-consuming", "hobby.", "To", "protect", "this", "art,", "competitions", "are", "held", "between", "the", "falconers", "every", "year.", "You", "can", "enjoy", "these", "shows", "which", "are", "arranged", "individually", "for", "guests", "and", "tourists", "in", "Issyk", "Kul,", "Naryn", "and", "areas", "nearby", "Bishkek.", "Hunting", "With", "Eagles,", "Kyrgyzstan", "–", "by", "Laurent", "de", "Walick:Flickr", "Just", "So", "You", "Know:" ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Even", "the", "Klan", "is", "too", "embarrassed", "by", "them...", "According", "to", "some", "little", "noticed", "2010", "press", "releases", "on", "the", "KKK's", "main", "website,", "which", "turned", "up", "this", "week", "on", "Reddit,", "it", "seems", "as", "if", "America's", "most", "famous", "hate", "group", "is", "actually", "very", "concerned", "about", "being", "mistakenly", "lumped", "in", "with", "other", "zealots", "on", "the", "right,", "including", "Koran-burning", "churches,", "the", "Westboro", "Baptists,", "and", "the", "Tea", "Party.", "In", "one", "statement", "from", "August", "2010,", "the", "Klan", "had", "this", "(shockingly", "reasonable", "thing)", "to", "say", "about", "Terry", "Jones,", "the", "Florida", "pastor", "whose", "Koran", "burning", "set", "off", "a", "massacre", "at", "a", "U.N.", "building", "in", "Afghanistan", "in", "early", "April", "this", "year:", "There", "are", "without", "doubt", "Islamic", "sects", "that", "teach", "extreme", "views", "of", "Islam", "but,", "going", "down", "to", "their", "level", "of", "hatred", "by", "burning", "their", "books", "is", "a", "dangerous", "and", "ignorant", "way", "to", "confront", "their", "teachings.", "The", "flames", "made", "by", "such", "unholy", "fires", "never", "die", "out!", "The", "Ku", "Klux", "Klan,", "LLC.", "opposes", "this", "most", "un-American", "thinking", "and", "activity.", "The", "Klan", "also", "says", "it", "\"absolutely", "repudiates\"", "the", "Westboro", "Baptist", "Church's", "practice", "of", "protesting", "at", "American", "soldiers'", "funerals,", "and,", "maybe", "most", "surprisingly,", "it", "says", "it's", "no", "fan", "of", "the", "Tea", "Party.", "\"Our", "Associates,", "members", "and", "supporters", "are", "here", "officially", "ordered:", "NOT", "to", "attend", "Tea", "Party", "events", "or", "support", "them", "in", "ANY", "way,\"", "writes", "the", "Klan.", "\"The", "Tea", "Party", "does", "not", "represent", "any", "but", "a", "shallow", "limited", "political", "agenda,", "which", "fails", "to", "serve", "our", "Nations", "interests.", "They", "are", "an", "extension", "of", "the", "Republican", "Party", "and", "seek", "to", "compromise", "it.", "We", "do", "NOT", "support", "any", "political", "party,", "all", "have", "betrayed", "the", "trust", "of", "the", "American", "people,", "and", "they", "have", "compromised", "their", "agenda", "to", "support", "the", "Progressive", "Socialist", "enslavement", "of", "the", "American", "people.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Even", "the", "Klan", "is", "too", "embarrassed", "by", "them...", "According", "to", "some", "little", "noticed", "2010", "press", "releases", "on", "the", "KKK's", "main", "website,", "which", "turned", "up", "this", "week", "on", "Reddit,", "it", "seems", "as", "if", "America's", "most", "famous", "hate", "group", "is", "actually", "very", "concerned", "about", "being", "mistakenly", "lumped", "in", "with", "other", "zealots", "on", "the", "right,", "including", "Koran-burning", "churches,", "the", "Westboro", "Baptists,", "and", "the", "Tea", "Party.", "In", "one", "statement", "from", "August", "2010,", "the", "Klan", "had", "this", "(shockingly", "reasonable", "thing)", "to", "say", "about", "Terry", "Jones,", "the", "Florida", "pastor", "whose", "Koran", "burning", "set", "off", "a", "massacre", "at", "a", "U.N.", "building", "in", "Afghanistan", "in", "early", "April", "this", "year:", "There", "are", "without", "doubt", "Islamic", "sects", "that", "teach", "extreme", "views", "of", "Islam", "but,", "going", "down", "to", "their", "level", "of", "hatred", "by", "burning", "their", "books", "is", "a", "dangerous", "and", "ignorant", "way", "to", "confront", "their", "teachings.", "The", "flames", "made", "by", "such", "unholy", "fires", "never", "die", "out!", "The", "Ku", "Klux", "Klan,", "LLC.", "opposes", "this", "most", "un-American", "thinking", "and", "activity.", "The", "Klan", "also", "says", "it", "\"absolutely", "repudiates\"", "the", "Westboro", "Baptist", "Church's", "practice", "of", "protesting", "at", "American", "soldiers'", "funerals,", "and,", "maybe", "most", "surprisingly,", "it", "says", "it's", "no", "fan", "of", "the", "Tea", "Party.", "\"Our", "Associates,", "members", "and", "supporters", "are", "here", "officially", "ordered:", "NOT", "to", "attend", "Tea", "Party", "events", "or", "support", "them", "in", "ANY", "way,\"", "writes", "the", "Klan.", "\"The", "Tea", "Party", "does", "not", "represent", "any", "but", "a", "shallow", "limited", "political", "agenda,", "which", "fails", "to", "serve", "our", "Nations", "interests.", "They", "are", "an", "extension", "of", "the", "Republican", "Party", "and", "seek", "to", "compromise", "it.", "We", "do", "NOT", "support", "any", "political", "party,", "all", "have", "betrayed", "the", "trust", "of", "the", "American", "people,", "and", "they", "have", "compromised", "their", "agenda", "to", "support", "the", "Progressive", "Socialist", "enslavement", "of", "the", "American", "people.\"" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "House", "Democrats", "and", "Republicans", "found", "common", "ground", "Tuesday", "in", "denunciating", "President", "Trump", "Donald", "John", "TrumpOmar", "fires", "back", "at", "Trump", "over", "rally", "remarks:", "'This", "is", "my", "country'", "Pelosi:", "Trump", "hurrying", "to", "fill", "SCOTUS", "seat", "so", "he", "can", "repeal", "ObamaCare", "Trump", "mocks", "Biden", "appearance,", "mask", "use", "ahead", "of", "first", "debate", "MORE’s", "proposed", "12", "percent", "cut", "to", "the", "National", "Science", "Foundation", "(NSF),", "the", "country’s", "leading", "backer", "of", "non-medical", "research.", "“Why", "would", "anyone", "in", "the", "world", "want", "to", "cut", "NSF", "funding", "given", "that", "its", "funding", "drives", "our", "economy,", "enhances", "our", "national", "security,", "and", "advances", "this", "nation’s", "leadership", "globally?”", "asked", "an", "indignant", "Rep.", "Matt", "Cartwright", "Matthew", "(Matt)", "Alton", "CartwrightRaces", "heat", "up", "for", "House", "leadership", "posts", "Trump", "Jr.", "seeks", "to", "elect", "'new", "blood'", "to", "Republican", "Party", "Republicans", "face", "worsening", "outlook", "in", "battle", "for", "House", "MORE", "(D-Pa.)", "during", "a", "hearing", "on", "Trump’s", "proposed", "budget", "for", "the", "NSF", "at", "the", "House", "Appropriations", "Subcommittee", "on", "Commerce,", "Justice,", "Science", "and", "Related", "Agencies.", "ADVERTISEMENT", "The", "$1", "billion", "cut", "would", "lower", "the", "agency’s", "funding", "to", "2012", "levels", "and", "drop", "the", "number", "of", "research", "grants", "from", "11,600", "in", "fiscal", "2019", "to", "10,400.", "The", "agency", "would", "have", "to", "scale", "back", "the", "number", "of", "graduate", "students", "receiving", "awards", "to", "1,600,", "a", "25", "percent", "decrease.", "“I", "know", "that", "budgets", "are", "tight,", "but", "there", "are", "certain", "areas", "that", "should", "not", "face", "cuts,”", "said", "subcommittee", "Chairman", "José", "Serrano", "(D-N.Y.).", "“We", "worry", "that", "these", "cuts", "are", "really", "harming", "our", "future.”", "The", "panel’s", "Republicans", "had", "equally", "strong", "misgivings", "about", "the", "proposed", "cut.", "“Even", "in", "times", "of", "fiscal", "restraint,", "this", "committee", "has", "remained", "supportive", "of", "NSF’s", "efforts", "to", "ensure", "that", "students,", "scientists", "and", "universities", "have", "the", "funds", "to", "carry", "out", "their", "vital", "research,”", "said", "Rep.", "Robert", "Aderholt", "(R-Ala.),", "the", "subcommittee’s", "ranking", "member.", "In", "a", "scene", "that", "has", "become", "common", "in", "the", "Trump", "era,", "the", "agency’s", "director,", "Dr.", "France", "A.", "Córdova,", "was", "forced", "to", "provide", "justifications", "for", "the", "budget", "cuts,", "even", "while", "extolling", "the", "organization’s", "work.", "“Every", "day,", "we", "interact", "with", "advancements", "that", "would", "not", "be", "possible", "without", "the", "National", "Science", "Foundation,”", "Córdova", "said,", "noting", "that", "NSF", "funding", "helped", "to", "develop", "touchscreens", "and", "GPS", "technology", "used", "in", "smart", "phones,", "the", "research", "that", "daily", "weather", "forecasts", "use,", "and", "bar", "codes.", "“Sometimes", "basic", "research", "is", "criticized", "at", "first", "for", "seeming", "silly", "or", "wasteful", "or", "unworthy", "of", "federal", "resources,”", "she", "continued,", "pointing", "out", "that", "NSF", "had", "been", "criticized", "early", "on", "for", "its", "funding", "of", "research", "developing", "American", "Sign", "Language.", "She", "emphatically", "thanked", "the", "committee", "for", "funding", "NSF", "at", "record", "levels", "in", "2019,", "a", "move", "that", "ignored", "Trump’s", "previous", "requests", "to", "cut", "the", "agency’s", "funding.", "But", "when", "repeatedly", "asked", "to", "justify", "the", "cuts", "to", "programs", "that", "appropriators", "cited", "as", "important", "to", "American", "innovation,", "economic", "growth", "and", "global", "competitiveness,", "Córdova,", "an", "Obama", "appointee,", "noted", "that", "the", "cut", "was", "part", "of", "the", "administration’s", "larger", "reduction", "in", "nondefense", "spending", "aimed", "at", "reducing", "deficits.", "“This", "is", "the", "president’s", "budget,”", "she", "said", "at", "one", "point.", "“The", "overall", "framework", "is", "the", "president’s", "initiative", "to", "get", "us", "back", "on", "course", "with", "the", "big", "deficit", "our", "country", "is", "facing.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "House", "Democrats", "and", "Republicans", "found", "common", "ground", "Tuesday", "in", "denunciating", "President", "Trump", "Donald", "John", "TrumpOmar", "fires", "back", "at", "Trump", "over", "rally", "remarks:", "'This", "is", "my", "country'", "Pelosi:", "Trump", "hurrying", "to", "fill", "SCOTUS", "seat", "so", "he", "can", "repeal", "ObamaCare", "Trump", "mocks", "Biden", "appearance,", "mask", "use", "ahead", "of", "first", "debate", "MORE’s", "proposed", "12", "percent", "cut", "to", "the", "National", "Science", "Foundation", "(NSF),", "the", "country’s", "leading", "backer", "of", "non-medical", "research.", "“Why", "would", "anyone", "in", "the", "world", "want", "to", "cut", "NSF", "funding", "given", "that", "its", "funding", "drives", "our", "economy,", "enhances", "our", "national", "security,", "and", "advances", "this", "nation’s", "leadership", "globally?”", "asked", "an", "indignant", "Rep.", "Matt", "Cartwright", "Matthew", "(Matt)", "Alton", "CartwrightRaces", "heat", "up", "for", "House", "leadership", "posts", "Trump", "Jr.", "seeks", "to", "elect", "'new", "blood'", "to", "Republican", "Party", "Republicans", "face", "worsening", "outlook", "in", "battle", "for", "House", "MORE", "(D-Pa.)", "during", "a", "hearing", "on", "Trump’s", "proposed", "budget", "for", "the", "NSF", "at", "the", "House", "Appropriations", "Subcommittee", "on", "Commerce,", "Justice,", "Science", "and", "Related", "Agencies.", "ADVERTISEMENT", "The", "$1", "billion", "cut", "would", "lower", "the", "agency’s", "funding", "to", "2012", "levels", "and", "drop", "the", "number", "of", "research", "grants", "from", "11,600", "in", "fiscal", "2019", "to", "10,400.", "The", "agency", "would", "have", "to", "scale", "back", "the", "number", "of", "graduate", "students", "receiving", "awards", "to", "1,600,", "a", "25", "percent", "decrease.", "“I", "know", "that", "budgets", "are", "tight,", "but", "there", "are", "certain", "areas", "that", "should", "not", "face", "cuts,”", "said", "subcommittee", "Chairman", "José", "Serrano", "(D-N.Y.).", "“We", "worry", "that", "these", "cuts", "are", "really", "harming", "our", "future.”", "The", "panel’s", "Republicans", "had", "equally", "strong", "misgivings", "about", "the", "proposed", "cut.", "“Even", "in", "times", "of", "fiscal", "restraint,", "this", "committee", "has", "remained", "supportive", "of", "NSF’s", "efforts", "to", "ensure", "that", "students,", "scientists", "and", "universities", "have", "the", "funds", "to", "carry", "out", "their", "vital", "research,”", "said", "Rep.", "Robert", "Aderholt", "(R-Ala.),", "the", "subcommittee’s", "ranking", "member.", "In", "a", "scene", "that", "has", "become", "common", "in", "the", "Trump", "era,", "the", "agency’s", "director,", "Dr.", "France", "A.", "Córdova,", "was", "forced", "to", "provide", "justifications", "for", "the", "budget", "cuts,", "even", "while", "extolling", "the", "organization’s", "work.", "“Every", "day,", "we", "interact", "with", "advancements", "that", "would", "not", "be", "possible", "without", "the", "National", "Science", "Foundation,”", "Córdova", "said,", "noting", "that", "NSF", "funding", "helped", "to", "develop", "touchscreens", "and", "GPS", "technology", "used", "in", "smart", "phones,", "the", "research", "that", "daily", "weather", "forecasts", "use,", "and", "bar", "codes.", "“Sometimes", "basic", "research", "is", "criticized", "at", "first", "for", "seeming", "silly", "or", "wasteful", "or", "unworthy", "of", "federal", "resources,”", "she", "continued,", "pointing", "out", "that", "NSF", "had", "been", "criticized", "early", "on", "for", "its", "funding", "of", "research", "developing", "American", "Sign", "Language.", "She", "emphatically", "thanked", "the", "committee", "for", "funding", "NSF", "at", "record", "levels", "in", "2019,", "a", "move", "that", "ignored", "Trump’s", "previous", "requests", "to", "cut", "the", "agency’s", "funding.", "But", "when", "repeatedly", "asked", "to", "justify", "the", "cuts", "to", "programs", "that", "appropriators", "cited", "as", "important", "to", "American", "innovation,", "economic", "growth", "and", "global", "competitiveness,", "Córdova,", "an", "Obama", "appointee,", "noted", "that", "the", "cut", "was", "part", "of", "the", "administration’s", "larger", "reduction", "in", "nondefense", "spending", "aimed", "at", "reducing", "deficits.", "“This", "is", "the", "president’s", "budget,”", "she", "said", "at", "one", "point.", "“The", "overall", "framework", "is", "the", "president’s", "initiative", "to", "get", "us", "back", "on", "course", "with", "the", "big", "deficit", "our", "country", "is", "facing.”" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "The", "upcoming", "Assembly", "Election", "in", "Madhya", "Pradesh", "is", "likely", "to", "be", "fought", "on", "social", "media", "as", "BJP", "and", "Congress", "have", "planned", "to", "expand", "their", "social", "media", "teams", "by", "hiring", "more", "than", "1.5", "lakh", "social", "media", "experts,", "and", "create", "two", "lakh", "WhatsApp", "groups", "to", "reach", "out", "to", "voters", "Bhopal:", "The", "upcoming", "Assembly", "Election", "in", "Madhya", "Pradesh", "is", "likely", "to", "be", "fought", "on", "social", "media", "as", "major", "political", "parties", "—", "BJP,", "Congress", "—", "have", "planned", "to", "expand", "their", "social", "media", "teams", "by", "hiring", "more", "than", "1.5", "lakh", "social", "media", "experts.", "Moreover,", "both", "parties", "have", "also", "planned", "to", "create", "around", "two", "lakh", "(one", "lakh", "each)", "exclusive", "WhatsApp", "groups", "from", "the", "booth", "level", "to", "state,", "aimed", "to", "reach", "every", "smartphone", "user-voter", "through", "the", "social", "messaging", "app.", "The", "ruling", "BJP", "is", "hiring", "anywhere", "between", "70,000", "to", "75,000", "social", "media", "experts", "and", "has", "named", "them", "‘Cyber", "Yoddha’", "(cyber", "warriors)", "while", "the", "Congress", "has", "been", "hiring", "the", "same", "number", "of", "experts", "and", "calls", "them", "‘Rajiv", "Ke", "Sipahi’", "to", "counter", "each", "other", "on", "social", "media.", "Soon,", "both", "parties", "will", "start", "their", "week-long", "training", "for", "the", "cyber", "experts.", "Both", "parties", "have", "been", "deploying", "cyber", "warriors", "on", "each", "booth,", "block,", "district,", "division,", "and", "constituency", "with", "an", "eye", "on", "the", "village", "voters.", "Social", "media", "has", "become", "ubiquitous", "communication", "channels", "for", "candidates", "during", "election", "campaigns.", "Platforms", "like", "WhatsApp,", "Facebook,", "Twitter", "and", "so", "on", "enable", "candidates", "to", "directly", "reach", "out", "to", "voters,", "mobilise", "supporters", "and", "influence", "the", "public", "agenda.", "As", "per", "the", "parties’", "officials,", "their", "main", "work", "is", "to", "increase", "the", "presence", "of", "their", "parties,", "local", "leaders", "and", "national", "leaders", "on", "social", "media", "platforms.", "They", "also", "help", "propagate", "parties'", "manifesto,", "expose", "the", "failure", "of", "the", "opposition", "and", "promote", "parties'", "achievements,", "round", "the", "clock.", "There", "are", "65,000", "polling", "booths", "in", "Madhya", "Pradesh,", "and", "both", "Congress", "and", "BJP", "plan", "to", "create", "exclusive", "WhatsApp", "group", "with", "the", "name", "of", "each", "polling", "booths", "by", "roping", "in", "social", "media", "experts.", "In", "addition", "to", "that,", "there", "are", "seven", "crore", "voters", "in", "Madhya", "Pradesh", "of", "which", "between", "60", "percent", "to", "70", "percent", "are", "smartphone", "users.", "With", "the", "help", "of", "WhatsApp", "and", "other", "social", "media", "platforms,", "Congress", "is", "targetting", "to", "reach", "out", "to", "at", "least", "35", "percent", "of", "voters", "and", "is", "assured", "of", "converting", "10", "percent", "of", "them", "into", "the", "votes.", "While,", "BJP", "is", "targetting", "40", "percent", "to", "45", "percent", "smartphone", "users", "in", "the", "state,", "and", "is", "confident", "of", "converting", "20", "percent", "of", "them", "into", "the", "votes.", "Currently,", "both", "the", "parties", "are", "recruiting", "tech-savvy", "party", "workers,", "but", "they", "may", "also", "hire", "paid", "social", "media", "experts", "if", "needed.", "Why", "WhatsApp?", "When", "asked", "why", "both", "parties", "are", "much", "focused", "on", "WhatsApp", "in", "comparison", "to", "Facebook,", "content", "and", "strategy", "head,", "BJP", "Madhya", "Pradesh,", "Shivraj", "Singh", "Dabi", "replied,", "“Facebook", "is", "a", "common", "platform,", "where", "one", "can", "notice", "others'", "activities", "and", "it", "is", "a", "two-way", "communication.", "But", "WhatsApp", "is", "a", "closed", "platform", "and", "more", "importantly,", "it's", "a", "personal", "and", "fast", "messaging", "app.", "Facebook", "may", "take", "time", "in", "making", "things", "viral,", "but", "on", "WhatsApp,", "it", "hardly", "takes", "an", "hour.\"", "More", "importantly,", "of", "the", "seven", "crore", "voters", "in", "Madhya", "Pradesh,", "Dabi", "claimed", "approximately", "4.5", "crore", "are", "smartphone", "users", "and", "use", "WhatsApp.", "\"WhatsApp", "has", "the", "highest", "reach", "in", "comparison", "to", "other", "media", "platforms,”", "he", "added.", "Congress,", "however,", "plans", "to", "focus", "on", "both", "WhatsApp", "as", "well", "as", "Facebook.", "Madhya", "Pradesh", "Congress", "IT", "in-charge", "for", "content", "and", "strategy,", "Abhay", "Tiwari", "said,", "\"There", "is", "no", "doubt", "that", "WhatsApp", "is", "the", "fastest", "technology", "of", "communication", "today.", "Besides", "WhatsApp,", "we", "have", "created", "some", "Facebook", "pages,", "which", "now", "have", "a", "huge", "number", "of", "following,", "to", "share", "content.", "We", "also", "plan", "to", "use", "Facebook", "accounts", "of", "senior", "party", "leaders", "who", "have", "a", "huge", "number", "of", "following", "to", "share", "the", "contents.", "Congress’", "strategy", "Booth", "level:", "Congress", "plans", "to", "create", "WhatsApp", "groups", "with", "the", "name", "of", "each", "polling", "booth", "and", "the", "social", "media", "expert", "of", "that", "polling", "booth", "will", "be", "the", "admin", "of", "the", "group.", "He", "will", "be", "responsible", "for", "sharing", "contents,", "photos,", "videos", "and", "make", "sure", "they", "reach", "every", "smartphone", "user-voter", "of", "that", "booth.", "Of", "the", "65,000", "social", "media", "experts", "required", "to", "work", "at", "booth", "level,", "Congress", "has", "recruited", "around", "30,000", "social", "media", "experts", "till", "date", "and", "recruitment", "for", "the", "rest", "are", "underway.", "Besides", "the", "booth", "level,", "the", "party", "has", "also", "recruited", "social", "media", "experts", "on", "the", "block,", "division,", "constituency", "and", "district", "level", "including", "'a", "state", "group'", "which", "comprises", "national", "leaders", "of", "the", "party", "who", "will", "monitor", "the", "activates", "and", "will", "work", "as", "a", "think", "tank", "for", "the", "party's", "social", "media", "campaign.", "\"Thirty", "thousand", "WhatsApp", "groups", "are", "already", "running", "and", "exposing", "the", "(BJP)", "government’s", "failure.", "The", "idea", "behind", "creating", "booth", "level", "groups", "is", "to", "ensure", "that", "our", "message", "reaches", "every", "smartphone", "user", "of", "that", "booth,", "so,", "the", "voters", "can", "decide", "whom", "they", "should", "vote,\"", "said", "Tiwari,", "adding", "that", "overall,", "Congress", "has", "planned", "to", "create", "1", "lakh", "WhatsApp", "groups", "to", "for", "election", "campaign.", "What", "content", "they", "will", "share" ], [ ":", "Congress", "plans", "to", "highlight", "BJP", "government’s", "failure", "with", "the", "help", "of", "short", "videos,", "texts,", "and", "graphics.", "“We", "have", "too", "much", "ammunition", "against", "the", "ruling", "party", "—", "BJP,", "which", "is", "in", "power", "for", "15", "years", "in", "the", "state", "and", "has", "failed", "to", "deliver", "on", "countless", "fronts.", "As", "the", "opposition,", "the", "only", "thing", "we", "need", "to", "do", "is", "to", "convey", "this", "message", "to", "the", "voters", "and", "convince", "them", "to", "vote", "for", "change,”", "said", "Tiwari.", "Dealing", "with", "fake", "news", "and", "communal", "politics:", "From", "30", "August,", "2018,", "two", "months", "before", "the", "election,", "Congress", "plans", "to", "launch", "'Sawdhan", "Series", "campaign'", "in", "which", "the", "party", "will", "highlight", "the", "fake", "news", "spread", "by", "the", "other", "political", "parties", "and", "also", "create", "awareness", "against", "communal", "politics.", "\"Using", "communal", "card", "through", "fake", "news", "before", "the", "election", "is", "the", "key", "for", "BJP", "to", "win", "polls.", "To", "counter", "it,", "Congress", "will", "launch", "‘Sawdhan", "Series’", "to", "create", "awareness", "and", "till", "date", "we", "have", "lodged", "four", "FIR", "against", "fake", "news,", "to", "stop", "such", "contents", "in", "future,”", "said", "Tiwari.", "He", "further", "added", "that", "the", "party", "has", "planned", "to", "run", "a", "special", "campaign", "against", "Chief", "Minister", "Shivraj", "Singh", "Chouhan", "to", "expose", "his", "involvement", "in", "scams,", "his", "failure", "as", "a", "chief", "minister,", "an", "administrator,", "and", "more", "importantly,", "his", "failure", "in", "addressing", "the", "farmers’", "issues.", "Congress", "is", "leaving", "no", "stone", "unturned", "to", "expose", "the", "state", "BJP", "government", "in", "this", "election.", "As", "per", "the", "party", "official,", "from", "30", "August,", "2018,", "coordinators", "of", "all", "the", "230", "Assembly", "constituencies", "in", "the", "state", "will", "share", "a", "video", "a", "week,", "carrying", "bytes", "of", "the", "locals", "over", "their", "genuine", "problems.", "\"The", "representatives", "of", "the", "respective", "constituencies", "will", "visit", "different", "towns,", "villages", "every", "week", "and", "make", "a", "video", "of", "the", "problems", "prevailing", "in", "those", "areas", "by", "taking", "public", "bytes", "each", "week.", "Later,", "it", "will", "be", "shared", "on", "Facebook", "pages", "and", "WhatsApp", "groups.", "In", "four", "months,", "we", "are", "likely", "to", "share", "4,600", "videos,\"", "added", "Tiwari.", "BJP’s", "strategy", "It", "is", "said", "that", "BJP", "has", "the", "strongest", "IT", "cell", "in", "comparison", "to", "other", "political", "parties", "and", "they", "are", "master", "in", "dealing", "with", "the", "online", "stuff.", "BJP’s", "plan", "for", "Madhya", "Pradesh", "election", "is", "a", "bit", "different", "from", "Congress.", "The", "party", "is", "not", "only", "creating", "65,", "000", "WhatsApp", "groups", "at", "booth", "level", "but", "also", "on", "the", "block,", "district,", "division,", "and", "Assembly", "levels.", "The", "party", "has", "planned", "to", "create", "overall", "90,000", "WhatsApp", "group", "by", "roping", "in", "around", "80,000", "social", "media", "experts.", "“If", "we", "talk", "about", "the", "structure", "of", "the", "social", "media", "team,", "there", "will", "be", "one", "social", "media", "expert", "on", "each", "booth,", "while", "six", "on", "each", "block,", "11", "in", "each", "district,", "nine", "on", "each", "Assembly", "constituency.", "There", "will", "be", "a", "body", "comprising", "50", "members", "including", "senior", "BJP", "leader", "and", "senior", "social", "media", "experts,”", "said", "Dabi.", "He", "says", "that", "there", "is", "a", "plan", "to", "create", "around", "90,000", "WhatsApp", "groups", "in", "the", "upcoming", "election.", "What", "content", "they", "will", "share:", "To", "woo", "the", "voters,", "the", "saffron", "party", "has", "planned", "to", "advertise", "the", "various", "schemes", "of", "the", "state", "and", "Union", "government.", "To", "make", "their", "appeal", "more", "effective,", "the", "IT", "Cell", "of", "the", "party", "has", "decided", "to", "share", "the", "success", "stories", "of", "government", "scheme", "beneficiaries.", "“We", "will", "not", "only", "share", "success", "stories", "of", "state", "and", "centre", "government", "schemes", "beneficiaries", "but", "also", "cash", "on", "the", "popularity", "of", "Chief", "Minister", "Shivraj", "Singh", "Chouhan", "and", "Prime", "Minister", "Narendra", "Modi,”", "Dabi", "added.", "He", "further", "said,", "“Sharing", "video", "stories", "and", "charts", "of", "government", "schemes'", "beneficiaries", "are", "keys", "to", "wooing", "voters.", "In", "the", "last", "15", "years,", "hundreds", "of", "welfare", "schemes", "have", "been", "floated", "by", "the", "state", "government", "and", "some", "of", "the", "schemes", "are", "very", "popular.", "There", "are", "numerous", "beneficiaries", "who", "are", "eager", "to", "share", "their", "experience", "with", "us.", "It", "will", "leave", "a", "huge", "impact", "on", "voters", "and", "convince", "them", "to", "vote", "for", "the", "BJP,", "again.”", "No", "plan", "to", "tackle", "farmers’", "issue:", "When", "asked", "if", "the", "BJP", "has", "a", "strategy", "to", "woo", "the", "farmers", "since", "the", "state", "witnessed", "some", "of", "the", "major", "farmers’", "protest,", "follow-up", "violence,", "and", "deaths,", "which", "had", "put", "the", "state", "government", "on", "backfoot,", "Dabi", "said,", "“Farmers", "are", "happy", "with", "the", "Shivraj", "government.", "Schemes", "like", "Bhavantar", "scheme", "are", "much", "popular", "among", "them.", "It", "is", "the", "Congress,", "which", "is", "provoking", "them.", "The", "recent", "rally", "of", "Congress", "president", "Rahul", "Gandhi", "in", "Mandsaur", "is", "the", "perfect", "example", "where", "farmers", "distanced", "themselves", "from", "it.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "upcoming", "Assembly", "Election", "in", "Madhya", "Pradesh", "is", "likely", "to", "be", "fought", "on", "social", "media", "as", "BJP", "and", "Congress", "have", "planned", "to", "expand", "their", "social", "media", "teams", "by", "hiring", "more", "than", "1.5", "lakh", "social", "media", "experts,", "and", "create", "two", "lakh", "WhatsApp", "groups", "to", "reach", "out", "to", "voters", "Bhopal:", "The", "upcoming", "Assembly", "Election", "in", "Madhya", "Pradesh", "is", "likely", "to", "be", "fought", "on", "social", "media", "as", "major", "political", "parties", "—", "BJP,", "Congress", "—", "have", "planned", "to", "expand", "their", "social", "media", "teams", "by", "hiring", "more", "than", "1.5", "lakh", "social", "media", "experts.", "Moreover,", "both", "parties", "have", "also", "planned", "to", "create", "around", "two", "lakh", "(one", "lakh", "each)", "exclusive", "WhatsApp", "groups", "from", "the", "booth", "level", "to", "state,", "aimed", "to", "reach", "every", "smartphone", "user-voter", "through", "the", "social", "messaging", "app.", "The", "ruling", "BJP", "is", "hiring", "anywhere", "between", "70,000", "to", "75,000", "social", "media", "experts", "and", "has", "named", "them", "‘Cyber", "Yoddha’", "(cyber", "warriors)", "while", "the", "Congress", "has", "been", "hiring", "the", "same", "number", "of", "experts", "and", "calls", "them", "‘Rajiv", "Ke", "Sipahi’", "to", "counter", "each", "other", "on", "social", "media.", "Soon,", "both", "parties", "will", "start", "their", "week-long", "training", "for", "the", "cyber", "experts.", "Both", "parties", "have", "been", "deploying", "cyber", "warriors", "on", "each", "booth,", "block,", "district,", "division,", "and", "constituency", "with", "an", "eye", "on", "the", "village", "voters.", "Social", "media", "has", "become", "ubiquitous", "communication", "channels", "for", "candidates", "during", "election", "campaigns.", "Platforms", "like", "WhatsApp,", "Facebook,", "Twitter", "and", "so", "on", "enable", "candidates", "to", "directly", "reach", "out", "to", "voters,", "mobilise", "supporters", "and", "influence", "the", "public", "agenda.", "As", "per", "the", "parties’", "officials,", "their", "main", "work", "is", "to", "increase", "the", "presence", "of", "their", "parties,", "local", "leaders", "and", "national", "leaders", "on", "social", "media", "platforms.", "They", "also", "help", "propagate", "parties'", "manifesto,", "expose", "the", "failure", "of", "the", "opposition", "and", "promote", "parties'", "achievements,", "round", "the", "clock.", "There", "are", "65,000", "polling", "booths", "in", "Madhya", "Pradesh,", "and", "both", "Congress", "and", "BJP", "plan", "to", "create", "exclusive", "WhatsApp", "group", "with", "the", "name", "of", "each", "polling", "booths", "by", "roping", "in", "social", "media", "experts.", "In", "addition", "to", "that,", "there", "are", "seven", "crore", "voters", "in", "Madhya", "Pradesh", "of", "which", "between", "60", "percent", "to", "70", "percent", "are", "smartphone", "users.", "With", "the", "help", "of", "WhatsApp", "and", "other", "social", "media", "platforms,", "Congress", "is", "targetting", "to", "reach", "out", "to", "at", "least", "35", "percent", "of", "voters", "and", "is", "assured", "of", "converting", "10", "percent", "of", "them", "into", "the", "votes.", "While,", "BJP", "is", "targetting", "40", "percent", "to", "45", "percent", "smartphone", "users", "in", "the", "state,", "and", "is", "confident", "of", "converting", "20", "percent", "of", "them", "into", "the", "votes.", "Currently,", "both", "the", "parties", "are", "recruiting", "tech-savvy", "party", "workers,", "but", "they", "may", "also", "hire", "paid", "social", "media", "experts", "if", "needed.", "Why", "WhatsApp?", "When", "asked", "why", "both", "parties", "are", "much", "focused", "on", "WhatsApp", "in", "comparison", "to", "Facebook,", "content", "and", "strategy", "head,", "BJP", "Madhya", "Pradesh,", "Shivraj", "Singh", "Dabi", "replied,", "“Facebook", "is", "a", "common", "platform,", "where", "one", "can", "notice", "others'", "activities", "and", "it", "is", "a", "two-way", "communication.", "But", "WhatsApp", "is", "a", "closed", "platform", "and", "more", "importantly,", "it's", "a", "personal", "and", "fast", "messaging", "app.", "Facebook", "may", "take", "time", "in", "making", "things", "viral,", "but", "on", "WhatsApp,", "it", "hardly", "takes", "an", "hour.\"", "More", "importantly,", "of", "the", "seven", "crore", "voters", "in", "Madhya", "Pradesh,", "Dabi", "claimed", "approximately", "4.5", "crore", "are", "smartphone", "users", "and", "use", "WhatsApp.", "\"WhatsApp", "has", "the", "highest", "reach", "in", "comparison", "to", "other", "media", "platforms,”", "he", "added.", "Congress,", "however,", "plans", "to", "focus", "on", "both", "WhatsApp", "as", "well", "as", "Facebook.", "Madhya", "Pradesh", "Congress", "IT", "in-charge", "for", "content", "and", "strategy,", "Abhay", "Tiwari", "said,", "\"There", "is", "no", "doubt", "that", "WhatsApp", "is", "the", "fastest", "technology", "of", "communication", "today.", "Besides", "WhatsApp,", "we", "have", "created", "some", "Facebook", "pages,", "which", "now", "have", "a", "huge", "number", "of", "following,", "to", "share", "content.", "We", "also", "plan", "to", "use", "Facebook", "accounts", "of", "senior", "party", "leaders", "who", "have", "a", "huge", "number", "of", "following", "to", "share", "the", "contents.", "Congress’", "strategy", "Booth", "level:", "Congress", "plans", "to", "create", "WhatsApp", "groups", "with", "the", "name", "of", "each", "polling", "booth", "and", "the", "social", "media", "expert", "of", "that", "polling", "booth", "will", "be", "the", "admin", "of", "the", "group.", "He", "will", "be", "responsible", "for", "sharing", "contents,", "photos,", "videos", "and", "make", "sure", "they", "reach", "every", "smartphone", "user-voter", "of", "that", "booth.", "Of", "the", "65,000", "social", "media", "experts", "required", "to", "work", "at", "booth", "level,", "Congress", "has", "recruited", "around", "30,000", "social", "media", "experts", "till", "date", "and", "recruitment", "for", "the", "rest", "are", "underway.", "Besides", "the", "booth", "level,", "the", "party", "has", "also", "recruited", "social", "media", "experts", "on", "the", "block,", "division,", "constituency", "and", "district", "level", "including", "'a", "state", "group'", "which", "comprises", "national", "leaders", "of", "the", "party", "who", "will", "monitor", "the", "activates", "and", "will", "work", "as", "a", "think", "tank", "for", "the", "party's", "social", "media", "campaign.", "\"Thirty", "thousand", "WhatsApp", "groups", "are", "already", "running", "and", "exposing", "the", "(BJP)", "government’s", "failure.", "The", "idea", "behind", "creating", "booth", "level", "groups", "is", "to", "ensure", "that", "our", "message", "reaches", "every", "smartphone", "user", "of", "that", "booth,", "so,", "the", "voters", "can", "decide", "whom", "they", "should", "vote,\"", "said", "Tiwari,", "adding", "that", "overall,", "Congress", "has", "planned", "to", "create", "1", "lakh", "WhatsApp", "groups", "to", "for", "election", "campaign.", "What", "content", "they", "will", "share" ] ], [ [ ":", "Congress", "plans", "to", "highlight", "BJP", "government’s", "failure", "with", "the", "help", "of", "short", "videos,", "texts,", "and", "graphics.", "“We", "have", "too", "much", "ammunition", "against", "the", "ruling", "party", "—", "BJP,", "which", "is", "in", "power", "for", "15", "years", "in", "the", "state", "and", "has", "failed", "to", "deliver", "on", "countless", "fronts.", "As", "the", "opposition,", "the", "only", "thing", "we", "need", "to", "do", "is", "to", "convey", "this", "message", "to", "the", "voters", "and", "convince", "them", "to", "vote", "for", "change,”", "said", "Tiwari.", "Dealing", "with", "fake", "news", "and", "communal", "politics:", "From", "30", "August,", "2018,", "two", "months", "before", "the", "election,", "Congress", "plans", "to", "launch", "'Sawdhan", "Series", "campaign'", "in", "which", "the", "party", "will", "highlight", "the", "fake", "news", "spread", "by", "the", "other", "political", "parties", "and", "also", "create", "awareness", "against", "communal", "politics.", "\"Using", "communal", "card", "through", "fake", "news", "before", "the", "election", "is", "the", "key", "for", "BJP", "to", "win", "polls.", "To", "counter", "it,", "Congress", "will", "launch", "‘Sawdhan", "Series’", "to", "create", "awareness", "and", "till", "date", "we", "have", "lodged", "four", "FIR", "against", "fake", "news,", "to", "stop", "such", "contents", "in", "future,”", "said", "Tiwari.", "He", "further", "added", "that", "the", "party", "has", "planned", "to", "run", "a", "special", "campaign", "against", "Chief", "Minister", "Shivraj", "Singh", "Chouhan", "to", "expose", "his", "involvement", "in", "scams,", "his", "failure", "as", "a", "chief", "minister,", "an", "administrator,", "and", "more", "importantly,", "his", "failure", "in", "addressing", "the", "farmers’", "issues.", "Congress", "is", "leaving", "no", "stone", "unturned", "to", "expose", "the", "state", "BJP", "government", "in", "this", "election.", "As", "per", "the", "party", "official,", "from", "30", "August,", "2018,", "coordinators", "of", "all", "the", "230", "Assembly", "constituencies", "in", "the", "state", "will", "share", "a", "video", "a", "week,", "carrying", "bytes", "of", "the", "locals", "over", "their", "genuine", "problems.", "\"The", "representatives", "of", "the", "respective", "constituencies", "will", "visit", "different", "towns,", "villages", "every", "week", "and", "make", "a", "video", "of", "the", "problems", "prevailing", "in", "those", "areas", "by", "taking", "public", "bytes", "each", "week.", "Later,", "it", "will", "be", "shared", "on", "Facebook", "pages", "and", "WhatsApp", "groups.", "In", "four", "months,", "we", "are", "likely", "to", "share", "4,600", "videos,\"", "added", "Tiwari.", "BJP’s", "strategy", "It", "is", "said", "that", "BJP", "has", "the", "strongest", "IT", "cell", "in", "comparison", "to", "other", "political", "parties", "and", "they", "are", "master", "in", "dealing", "with", "the", "online", "stuff.", "BJP’s", "plan", "for", "Madhya", "Pradesh", "election", "is", "a", "bit", "different", "from", "Congress.", "The", "party", "is", "not", "only", "creating", "65,", "000", "WhatsApp", "groups", "at", "booth", "level", "but", "also", "on", "the", "block,", "district,", "division,", "and", "Assembly", "levels.", "The", "party", "has", "planned", "to", "create", "overall", "90,000", "WhatsApp", "group", "by", "roping", "in", "around", "80,000", "social", "media", "experts.", "“If", "we", "talk", "about", "the", "structure", "of", "the", "social", "media", "team,", "there", "will", "be", "one", "social", "media", "expert", "on", "each", "booth,", "while", "six", "on", "each", "block,", "11", "in", "each", "district,", "nine", "on", "each", "Assembly", "constituency.", "There", "will", "be", "a", "body", "comprising", "50", "members", "including", "senior", "BJP", "leader", "and", "senior", "social", "media", "experts,”", "said", "Dabi.", "He", "says", "that", "there", "is", "a", "plan", "to", "create", "around", "90,000", "WhatsApp", "groups", "in", "the", "upcoming", "election.", "What", "content", "they", "will", "share:", "To", "woo", "the", "voters,", "the", "saffron", "party", "has", "planned", "to", "advertise", "the", "various", "schemes", "of", "the", "state", "and", "Union", "government.", "To", "make", "their", "appeal", "more", "effective,", "the", "IT", "Cell", "of", "the", "party", "has", "decided", "to", "share", "the", "success", "stories", "of", "government", "scheme", "beneficiaries.", "“We", "will", "not", "only", "share", "success", "stories", "of", "state", "and", "centre", "government", "schemes", "beneficiaries", "but", "also", "cash", "on", "the", "popularity", "of", "Chief", "Minister", "Shivraj", "Singh", "Chouhan", "and", "Prime", "Minister", "Narendra", "Modi,”", "Dabi", "added.", "He", "further", "said,", "“Sharing", "video", "stories", "and", "charts", "of", "government", "schemes'", "beneficiaries", "are", "keys", "to", "wooing", "voters.", "In", "the", "last", "15", "years,", "hundreds", "of", "welfare", "schemes", "have", "been", "floated", "by", "the", "state", "government", "and", "some", "of", "the", "schemes", "are", "very", "popular.", "There", "are", "numerous", "beneficiaries", "who", "are", "eager", "to", "share", "their", "experience", "with", "us.", "It", "will", "leave", "a", "huge", "impact", "on", "voters", "and", "convince", "them", "to", "vote", "for", "the", "BJP,", "again.”", "No", "plan", "to", "tackle", "farmers’", "issue:", "When", "asked", "if", "the", "BJP", "has", "a", "strategy", "to", "woo", "the", "farmers", "since", "the", "state", "witnessed", "some", "of", "the", "major", "farmers’", "protest,", "follow-up", "violence,", "and", "deaths,", "which", "had", "put", "the", "state", "government", "on", "backfoot,", "Dabi", "said,", "“Farmers", "are", "happy", "with", "the", "Shivraj", "government.", "Schemes", "like", "Bhavantar", "scheme", "are", "much", "popular", "among", "them.", "It", "is", "the", "Congress,", "which", "is", "provoking", "them.", "The", "recent", "rally", "of", "Congress", "president", "Rahul", "Gandhi", "in", "Mandsaur", "is", "the", "perfect", "example", "where", "farmers", "distanced", "themselves", "from", "it.\"" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "To", "those", "who", "did", "NAPLAN", "just", "recently", "in", "AUS", "or", "any", "other", "exams,", "Congratulations!", "You", "made", "it!", "I", "realise", "how", "many", "of", "the", "LL!", "Community", "have", "been", "trying", "so", "hard", "to", "both", "manage", "their", "accounts", "AND", "try", "and", "tier,", "so", "I", "wanted", "to", "make", "an", "appreciation", "post", "to", "those!", "Good", "luck", "to", "those", "who", "have", "exams", "coming", "up", "or", "just", "finished", "them,", "good", "luck", "and", "congrats!", "–", "Please", "do", "not", "reblog", "and", "delete", "this", "section", "of", "your", "reblog", "or", "post", "without", "permission/watermark!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "To", "those", "who", "did", "NAPLAN", "just", "recently", "in", "AUS", "or", "any", "other", "exams,", "Congratulations!", "You", "made", "it!", "I", "realise", "how", "many", "of", "the", "LL!", "Community", "have", "been", "trying", "so", "hard", "to", "both", "manage", "their", "accounts", "AND", "try", "and", "tier,", "so", "I", "wanted", "to", "make", "an", "appreciation", "post", "to", "those!", "Good", "luck", "to", "those", "who", "have", "exams", "coming", "up", "or", "just", "finished", "them,", "good", "luck", "and", "congrats!", "–", "Please", "do", "not", "reblog", "and", "delete", "this", "section", "of", "your", "reblog", "or", "post", "without", "permission/watermark!" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "After", "the", "panel", "was", "done,", "I", "was", "feeling", "quite", "hungry.", "It", "might", "have", "been", "all", "the", "talking", "of", "food", "while", "we", "were", "in", "line,", "but", "biological", "imperative", "kicked", "in.", "So,", "we", "missed", "out", "on", "the", "Korra", "panel…", "and", "the", "Firefly", "panel", "and", "got", "lunch", "instead.", "We", "weathered", "the", "huge", "crowd", "on", "5th", "Ave.", "to", "make", "our", "way", "to", "Broken", "Yolk", "on", "6th.", "Now,", "when", "I", "say", "crowd,", "I", "mean", "it.", "There", "were", "so", "many", "people", "that", "at", "times", "you", "had", "to", "walk", "in", "the", "street", "to", "pass", "by", "people.", "Thankfully,", "the", "street", "was", "closed", "to", "traffic.", "If", "you’re", "looking", "for", "freebies,", "outside", "of", "Comic", "Con", "is", "one", "of", "the", "best", "places", "to", "get", "it.", "There", "were", "so", "many", "people", "handing", "out", "all", "sorts", "of", "stuff.", "When", "we", "finally", "made", "it", "to", "the", "Broken", "Yolk,", "we", "noticed", "that", "it", "was", "being", "inhabited", "by", "the", "Hub", "for", "the", "weekend.", "Which", "means", "that", "all", "the", "decoration", "was", "based", "on", "Hub", "programming", "like", "My", "Little", "Pony,", "Care", "Bears", "and", "The", "Aquabats", "Super", "Show.", "There", "were", "monitors", "showing", "bits", "of", "different", "programming", "throughout", "the", "restaurant.", "They", "have", "specially", "printed", "menus", "that", "were", "made", "for", "that", "weekend", "in", "which", "they", "say", "that", "they", "are", "able", "to", "do", "substitutions…", "except", "that", "they", "didn’t", "allow", "for", "substitutions.", "That’s", "right,", "something", "that", "could", "have", "been", "omitted", "for", "the", "Con", "was", "left", "on.", "It’s", "a", "bit", "annoying", "when", "the", "menu", "explicitly", "says", "that", "it", "can", "do", "substitutions", "and", "then", "you’re", "told", "that", "it’s", "not", "possible.", "While", "not", "being", "able", "to", "get", "egg", "substitute", "was", "annoying,", "it", "wasn’t", "a", "deal", "breaker.", "However,", "pomegranate", "mimosas", "and", "a", "tasty", "California", "breakfast", "burritos", "made", "it", "worth", "staying", "for.", "Now,", "one", "thing", "I", "hadn’t", "mentioned", "was", "the", "amount", "of", "proselytizing", "happened", "at", "the", "con.", "This", "is", "something", "that", "I", "don’t", "think", "I", "get.", "There", "is", "a", "Christian", "Comics", "group", "at", "Comic", "Con.", "This", "should", "meet", "their", "need", "for", "religion", "available", "at", "the", "convention.", "There", "was", "even", "a", "Sunday", "devotional.", "This", "apparently", "doesn’t", "meet", "the", "proselytizers", "need", "to", "tell", "people", "they’re", "going", "to", "hell", "for", "dressing", "up", "and", "attending", "a", "convention.", "Now,", "this", "isn’t", "just", "unique", "to", "Comic", "Con.", "I’ve", "also", "mentioned", "that", "there’s", "the", "same", "thing", "at", "Fanime.", "However,", "there’s", "not", "just", "mocking", "the", "proselytizers.", "There", "are", "con", "goers", "who", "would", "reasonably", "talk", "to", "them", "and", "make", "legitimate", "arguments", "about", "how", "their", "arguments", "aren’t", "entirely", "founded", "and", "actually", "contradict", "what", "they’re", "quoting", "from", "the", "bible.", "This", "is", "something", "that", "I", "like.", "Instead", "of", "just", "antagonizing", "the", "religious", "types,", "they’re", "trying", "to", "find", "a", "middle", "ground.", "After", "the", "walk", "back", "from", "lunch", "it", "was", "time", "for", "my", "ASIFA", "panel", "talking", "about", "the", "current", "state", "of", "animation", "in", "Hollywood.", "There", "was", "a", "lot", "of", "discussion", "of", "traditional", "animation", "versus", "digital", "animation.", "Within", "digital", "animation", "they", "discussed", "2D", "animation,", "3D", "animation.", "They", "also", "discussed", "video", "game", "animation", "with", "digital", "animation", "and", "the", "differences", "between", "gameplay", "animation", "and", "pre-rendered", "animation.", "There", "was", "also", "a", "brief", "discussion", "of", "animation", "geared", "for", "adults", "and", "animation", "geared", "for", "children…", "and", "what", "is", "profitable", "for", "studios.", "There", "was", "also", "discussion", "about", "Kickstarter", "for", "video", "games.", "Overall", "it", "was", "an", "interesting", "and", "enlightening", "conversation.", "It", "gave", "me", "a", "greater", "appreciation", "for", "the", "animation", "industry", "and", "insight", "in", "to", "the", "future", "of", "animation.", "After", "the", "ASIFA", "panel", "we", "headed", "over", "to", "the", "dealer’s", "room.", "Now,", "it’s", "difficult", "to", "give", "an", "apt", "description", "of", "the", "dealer’s", "room.", "The", "biggest", "part", "is", "trying", "to", "describe", "the", "degree", "of", "chaos", "that", "you", "encounter", "once", "you’re", "in", "there.", "I’ve", "been", "to", "plenty", "of", "conventions", "and", "have", "gone", "through", "plenty", "of", "dealers", "rooms.", "There", "is", "nothing", "that", "can", "match", "the", "magnitude", "of", "Comic", "Con’s", "dealers", "room.", "It", "was", "insanity.", "Picture", "a", "street", "in", "a", "crowded", "city", "where", "everybody", "is", "trying", "to", "get", "you", "in", "to", "their", "shop.", "Now", "turn", "that", "up", "to", "11.", "It", "is", "an", "assault", "on", "all", "the", "senses.", "The", "space", "is", "almost", "the", "entire", "length", "of", "the", "bottom", "floor", "of", "the", "San", "Diego", "Convention", "Center,", "minus", "Hall", "H.", "There", "is", "so", "much", "there", "that", "you", "could", "conceivably", "spend", "your", "whole", "convention", "looking", "around", "in", "the", "dealers", "hall.", "I", "wish", "I", "had", "a", "head", "count", "to", "go", "with,", "because", "I", "would", "wager", "that", "there", "were", "about", "a", "couple", "of", "thousand", "of", "people", "milling", "around", "the", "dealer’s", "room", "at", "any", "given", "time.", "ASIFA:", "http://asifa.net/", "Broken", "Yolk", "Cafe:", "http://thebrokenyolkcafe.com/" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "After", "the", "panel", "was", "done,", "I", "was", "feeling", "quite", "hungry.", "It", "might", "have", "been", "all", "the", "talking", "of", "food", "while", "we", "were", "in", "line,", "but", "biological", "imperative", "kicked", "in.", "So,", "we", "missed", "out", "on", "the", "Korra", "panel…", "and", "the", "Firefly", "panel", "and", "got", "lunch", "instead.", "We", "weathered", "the", "huge", "crowd", "on", "5th", "Ave.", "to", "make", "our", "way", "to", "Broken", "Yolk", "on", "6th.", "Now,", "when", "I", "say", "crowd,", "I", "mean", "it.", "There", "were", "so", "many", "people", "that", "at", "times", "you", "had", "to", "walk", "in", "the", "street", "to", "pass", "by", "people.", "Thankfully,", "the", "street", "was", "closed", "to", "traffic.", "If", "you’re", "looking", "for", "freebies,", "outside", "of", "Comic", "Con", "is", "one", "of", "the", "best", "places", "to", "get", "it.", "There", "were", "so", "many", "people", "handing", "out", "all", "sorts", "of", "stuff.", "When", "we", "finally", "made", "it", "to", "the", "Broken", "Yolk,", "we", "noticed", "that", "it", "was", "being", "inhabited", "by", "the", "Hub", "for", "the", "weekend.", "Which", "means", "that", "all", "the", "decoration", "was", "based", "on", "Hub", "programming", "like", "My", "Little", "Pony,", "Care", "Bears", "and", "The", "Aquabats", "Super", "Show.", "There", "were", "monitors", "showing", "bits", "of", "different", "programming", "throughout", "the", "restaurant.", "They", "have", "specially", "printed", "menus", "that", "were", "made", "for", "that", "weekend", "in", "which", "they", "say", "that", "they", "are", "able", "to", "do", "substitutions…", "except", "that", "they", "didn’t", "allow", "for", "substitutions.", "That’s", "right,", "something", "that", "could", "have", "been", "omitted", "for", "the", "Con", "was", "left", "on.", "It’s", "a", "bit", "annoying", "when", "the", "menu", "explicitly", "says", "that", "it", "can", "do", "substitutions", "and", "then", "you’re", "told", "that", "it’s", "not", "possible.", "While", "not", "being", "able", "to", "get", "egg", "substitute", "was", "annoying,", "it", "wasn’t", "a", "deal", "breaker.", "However,", "pomegranate", "mimosas", "and", "a", "tasty", "California", "breakfast", "burritos", "made", "it", "worth", "staying", "for.", "Now,", "one", "thing", "I", "hadn’t", "mentioned", "was", "the", "amount", "of", "proselytizing", "happened", "at", "the", "con.", "This", "is", "something", "that", "I", "don’t", "think", "I", "get.", "There", "is", "a", "Christian", "Comics", "group", "at", "Comic", "Con.", "This", "should", "meet", "their", "need", "for", "religion", "available", "at", "the", "convention.", "There", "was", "even", "a", "Sunday", "devotional.", "This", "apparently", "doesn’t", "meet", "the", "proselytizers", "need", "to", "tell", "people", "they’re", "going", "to", "hell", "for", "dressing", "up", "and", "attending", "a", "convention.", "Now,", "this", "isn’t", "just", "unique", "to", "Comic", "Con.", "I’ve", "also", "mentioned", "that", "there’s", "the", "same", "thing", "at", "Fanime.", "However,", "there’s", "not", "just", "mocking", "the", "proselytizers.", "There", "are", "con", "goers", "who", "would", "reasonably", "talk", "to", "them", "and", "make", "legitimate", "arguments", "about", "how", "their", "arguments", "aren’t", "entirely", "founded", "and", "actually", "contradict", "what", "they’re", "quoting", "from", "the", "bible.", "This", "is", "something", "that", "I", "like.", "Instead", "of", "just", "antagonizing", "the", "religious", "types,", "they’re", "trying", "to", "find", "a", "middle", "ground.", "After", "the", "walk", "back", "from", "lunch", "it", "was", "time", "for", "my", "ASIFA", "panel", "talking", "about", "the", "current", "state", "of", "animation", "in", "Hollywood.", "There", "was", "a", "lot", "of", "discussion", "of", "traditional", "animation", "versus", "digital", "animation.", "Within", "digital", "animation", "they", "discussed", "2D", "animation,", "3D", "animation.", "They", "also", "discussed", "video", "game", "animation", "with", "digital", "animation", "and", "the", "differences", "between", "gameplay", "animation", "and", "pre-rendered", "animation.", "There", "was", "also", "a", "brief", "discussion", "of", "animation", "geared", "for", "adults", "and", "animation", "geared", "for", "children…", "and", "what", "is", "profitable", "for", "studios.", "There", "was", "also", "discussion", "about", "Kickstarter", "for", "video", "games.", "Overall", "it", "was", "an", "interesting", "and", "enlightening", "conversation.", "It", "gave", "me", "a", "greater", "appreciation", "for", "the", "animation", "industry", "and", "insight", "in", "to", "the", "future", "of", "animation.", "After", "the", "ASIFA", "panel", "we", "headed", "over", "to", "the", "dealer’s", "room.", "Now,", "it’s", "difficult", "to", "give", "an", "apt", "description", "of", "the", "dealer’s", "room.", "The", "biggest", "part", "is", "trying", "to", "describe", "the", "degree", "of", "chaos", "that", "you", "encounter", "once", "you’re", "in", "there.", "I’ve", "been", "to", "plenty", "of", "conventions", "and", "have", "gone", "through", "plenty", "of", "dealers", "rooms.", "There", "is", "nothing", "that", "can", "match", "the", "magnitude", "of", "Comic", "Con’s", "dealers", "room.", "It", "was", "insanity.", "Picture", "a", "street", "in", "a", "crowded", "city", "where", "everybody", "is", "trying", "to", "get", "you", "in", "to", "their", "shop.", "Now", "turn", "that", "up", "to", "11.", "It", "is", "an", "assault", "on", "all", "the", "senses.", "The", "space", "is", "almost", "the", "entire", "length", "of", "the", "bottom", "floor", "of", "the", "San", "Diego", "Convention", "Center,", "minus", "Hall", "H.", "There", "is", "so", "much", "there", "that", "you", "could", "conceivably", "spend", "your", "whole", "convention", "looking", "around", "in", "the", "dealers", "hall.", "I", "wish", "I", "had", "a", "head", "count", "to", "go", "with,", "because", "I", "would", "wager", "that", "there", "were", "about", "a", "couple", "of", "thousand", "of", "people", "milling", "around", "the", "dealer’s", "room", "at", "any", "given", "time.", "ASIFA:", "http://asifa.net/", "Broken", "Yolk", "Cafe:", "http://thebrokenyolkcafe.com/" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Here", "are", "the", "release", "notes!", "Okay,", "so", "first", "of", "all", "I", "want", "to", "apologize", "for", "not", "having", "the", "minimap", "in", "here", "or", "any", "new", "robots,", "which", "were", "things", "I’d", "said", "I", "was", "going", "to", "do", "today.", "We", "do", "have", "some", "new", "rooms", "for", "you,", "though,", "and", "some", "various", "tweaks", "and", "fixes", "to", "a", "number", "of", "other", "rooms.", "The", "bulk", "of", "today’s", "coding", "time", "was", "instead", "spent", "on", "refining", "the", "controls", "for", "the", "raptor", "and", "giving", "you", "some", "more", "options", "on", "tuning", "things", "there.", "This", "was", "probably", "the", "largest", "complaint", "about", "the", "content", "that", "is", "actually", "in", "the", "game", "at", "the", "moment.", "Some", "folks", "had", "some", "really", "good", "points", "about", "specific", "issues", "on", "reddit", "and", "the", "Steam", "forums,", "so", "I", "decided", "to", "switch", "gears", "and", "focus", "on", "those", "elements", "today", "rather", "than", "the", "minimap", "et", "al.", "Those", "will", "be", "tomorrow", "instead!", "There", "are", "also", "some", "bugfixes", "in", "here,", "and", "some", "updates", "to", "add", "new", "goodies", "into", "the", "level", "editor.", "You", "can", "use", "those", "if", "you", "like", "(the", "level", "editor", "is", "part", "of", "the", "game),", "but", "mainly", "those", "are", "for", "Blue", "so", "that", "she", "can", "create", "some", "new", "goodies", "for", "you", "coming", "up.", "Cinth", "added", "some", "really", "awesome", "arches", "for", "ceilings", "that", "he", "modeled", "and", "got", "to", "a", "reasonable", "polycount", "with", "painstaking", "effort,", "so", "we’re", "all", "quite", "pleased", "about", "these", "getting", "in", "there.", "He", "actually", "had", "those", "done", "late", "last", "week,", "and", "I", "just", "ran", "out", "of", "time", "to", "actually", "get", "them", "into", "the", "level", "editor", "palette.", "Anyhow,", "so", "that’s", "Day", "1", "of", "us", "actually", "having", "the", "game", "out.", "There", "will", "be", "another", "build", "tomorrow,", "and", "then", "most", "likely", "one", "on", "Sunday.", "Saturday", "is", "my", "son’s", "6th", "birthday", "party,", "so", "I’m", "going", "to", "be", "completely", "absent", "that", "day.", "In", "case", "you", "ever", "run", "into", "problems", "with", "a", "new", "build,", "I", "always", "put", "up", "a", "beta", "build", "calls", "“lastknowngood”", "in", "steam,", "so", "you", "can", "revert", "to", "that", "if", "a", "new", "build", "is", "temporarily", "causing", "you", "problems", "and", "I’m", "unavailable", "to", "fix", "it", "for", "whatever", "reason.", "Thanks", "to", "everyone", "for", "their", "support", "and", "suggestions!", "Chris", "Click", "here", "for", "the", "official", "forum", "thread", "on", "this", "post.", ".", "." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Here", "are", "the", "release", "notes!", "Okay,", "so", "first", "of", "all", "I", "want", "to", "apologize", "for", "not", "having", "the", "minimap", "in", "here", "or", "any", "new", "robots,", "which", "were", "things", "I’d", "said", "I", "was", "going", "to", "do", "today.", "We", "do", "have", "some", "new", "rooms", "for", "you,", "though,", "and", "some", "various", "tweaks", "and", "fixes", "to", "a", "number", "of", "other", "rooms.", "The", "bulk", "of", "today’s", "coding", "time", "was", "instead", "spent", "on", "refining", "the", "controls", "for", "the", "raptor", "and", "giving", "you", "some", "more", "options", "on", "tuning", "things", "there.", "This", "was", "probably", "the", "largest", "complaint", "about", "the", "content", "that", "is", "actually", "in", "the", "game", "at", "the", "moment.", "Some", "folks", "had", "some", "really", "good", "points", "about", "specific", "issues", "on", "reddit", "and", "the", "Steam", "forums,", "so", "I", "decided", "to", "switch", "gears", "and", "focus", "on", "those", "elements", "today", "rather", "than", "the", "minimap", "et", "al.", "Those", "will", "be", "tomorrow", "instead!", "There", "are", "also", "some", "bugfixes", "in", "here,", "and", "some", "updates", "to", "add", "new", "goodies", "into", "the", "level", "editor.", "You", "can", "use", "those", "if", "you", "like", "(the", "level", "editor", "is", "part", "of", "the", "game),", "but", "mainly", "those", "are", "for", "Blue", "so", "that", "she", "can", "create", "some", "new", "goodies", "for", "you", "coming", "up.", "Cinth", "added", "some", "really", "awesome", "arches", "for", "ceilings", "that", "he", "modeled", "and", "got", "to", "a", "reasonable", "polycount", "with", "painstaking", "effort,", "so", "we’re", "all", "quite", "pleased", "about", "these", "getting", "in", "there.", "He", "actually", "had", "those", "done", "late", "last", "week,", "and", "I", "just", "ran", "out", "of", "time", "to", "actually", "get", "them", "into", "the", "level", "editor", "palette.", "Anyhow,", "so", "that’s", "Day", "1", "of", "us", "actually", "having", "the", "game", "out.", "There", "will", "be", "another", "build", "tomorrow,", "and", "then", "most", "likely", "one", "on", "Sunday.", "Saturday", "is", "my", "son’s", "6th", "birthday", "party,", "so", "I’m", "going", "to", "be", "completely", "absent", "that", "day.", "In", "case", "you", "ever", "run", "into", "problems", "with", "a", "new", "build,", "I", "always", "put", "up", "a", "beta", "build", "calls", "“lastknowngood”", "in", "steam,", "so", "you", "can", "revert", "to", "that", "if", "a", "new", "build", "is", "temporarily", "causing", "you", "problems", "and", "I’m", "unavailable", "to", "fix", "it", "for", "whatever", "reason.", "Thanks", "to", "everyone", "for", "their", "support", "and", "suggestions!", "Chris", "Click", "here", "for", "the", "official", "forum", "thread", "on", "this", "post.", ".", "." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "In", "January,", "I", "wrote", "about", "the", "case", "of", "Grant", "Amato", "(“Florida", "Man", "Kills", "Family", "After", "Stealing", "Money", "to", "Contact", "a", "Bulgarian", "Whore”),", "sarcastically", "making", "what", "seemed", "to", "me", "a", "rather", "obvious", "point:", "If", "you", "were", "going", "to", "steal", "$200,000", "for", "a", "whore,", "why", "wouldn’t", "you", "find", "a", "local", "whore,", "instead", "of", "some", "whore", "in", "Bulgaria", "you", "met", "via", "the", "Internet?", "Like,", "I", "don’t", "know", "the", "going", "rate", "for", "whores", "in", "Seminole", "County,", "Florida,", "but", "I’m", "pretty", "sure", "$200,000", "would", "buy", "a", "lot", "of", "time", "with", "whores.", "Amato", "killed", "his", "parents", "and", "younger", "brother", "because", "he", "believed", "he", "was", "in", "a", "“relationship”", "with", "this", "Bulgarian", "camgirl,", "and", "his", "family", "—", "understandably", "angry", "that", "he", "had", "stole", "money", "from", "them", "to", "pay", "for", "Internet", "sessions", "with", "her", "—", "had", "insisted", "that", "he", "seek", "treatment", "for", "his", "“sex", "addiction.”", "Instead,", "he", "left", "the", "psychiatric", "treatment", "center", "early", "and", "murdered", "his", "family", "in", "cold", "blood:", "He", "first", "shot", "his", "mother", "as", "she", "sat", "at", "her", "computer", "desk.", "He", "then", "waited", "for", "his", "father", "to", "return", "home", "from", "work", "to", "shoot", "him", "too.", "Finally,", "several", "hours", "later,", "he", "shot", "dead", "his", "brother,", "who", "had", "come", "by", "the", "house", "to", "visit.", "Amato", "was", "sentenced", "to", "life", "in", "prison", "Monday,", "which", "prompted", "an", "opaque", "comment", "by", "Rational", "Male", "author", "Rollo", "Tomassi:", "This", "is", "why", "I", "say", "the", "Blue", "Pill", "is", "dangerous", "https://t.co/c6TMO5iXdq", "—", "Rollo", "Tomassi", "(@RationalMale)", "August", "14,", "2019", "Now,", "you", "may", "not", "catch", "Rollo’s", "meaning,", "even", "if", "you", "know", "that", "“red", "pill”", "is", "a", "phrase", "“borrowed", "from", "the", "1999", "film", "The", "Matrix", "[which]", "refers", "to", "seeing", "through", "socially", "accepted", "illusions", "to", "understand", "the", "brutal", "truths", "of", "human", "nature.”", "By", "contrast,", "when", "Rollo", "refers", "to", "“blue", "pill”", "thinking,", "he", "means", "among", "other", "things", "the", "unrealistic", "idealization", "of", "women", "which", "makes", "someone", "like", "Grant", "Amato", "think", "he’s", "in", "a", "“relationship”", "with", "a", "whore", "whose", "performances", "he", "has", "viewed", "via", "webcam.", "More", "generally,", "however,", "if", "“blue", "pill”", "thinking", "leads", "to", "sexual", "failure", "—", "and", "by", "definition,", "any", "man", "paying", "money", "to", "a", "camgirl", "is", "failing", "—", "then", "the", "consequences", "can", "be", "dangerous,", "as", "Rollo", "says.", "The", "common", "feminist", "complaint", "that", "the", "“red", "pill”", "community", "is", "about", "misogyny", "(hatred", "of", "women)", "rests", "upon", "the", "implicit", "premise", "that", "sexual", "behavior", "is", "a", "zero-sum", "game", "in", "which", "male", "success", "is", "inherently", "oppressive", "to", "women.", "Feminists", "believe", "that", "women", "should", "possess", "a", "sort", "of", "totalitarian", "monopoly", "on", "sexual", "power,", "and", "generally", "seek", "to", "exercise", "this", "power", "by", "enforcing", "rules", "that", "make", "heterosexual", "relationships", "an", "ordeal", "in", "which", "men,", "like", "lab", "rats", "in", "a", "Skinner", "box,", "are", "required", "to", "respond", "exactly", "as", "women", "wish,", "or", "risk", "disastrous", "punishment.", "Men", "who", "attempt", "to", "cooperate", "with", "these", "rules", "—", "“blue", "pill”", "men", "—", "are", "playing", "a", "losing", "game,", "because", "such", "cooperation", "ultimately", "renders", "them", "uninteresting", "to", "women,", "who", "become", "bored", "with", "their", "easy", "conquest", "of", "the", "kind", "of", "man", "who", "is", "willing", "to", "be", "a", "woman’s", "household", "pet.", "What", "the", "“blue", "pill”", "approach", "produces", "is", "men", "who", "are", "so", "completely", "oriented", "toward", "doing", "whatever", "women", "want", "that", "he", "ceases", "to", "have", "any", "independent", "identity.", "He", "becomes", "something", "like", "Andrew", "Golis,", "an", "obscure", "nonentity", "known", "only", "as", "“Jessica", "Valenti’s", "husband”", "(and", "her", "recent", "memoir", "expressed", "how", "thoroughly", "she", "despises", "him).", "Oh,", "and", "speaking", "of", "the", "she-devil:", "I’ve", "written", "before", "about", "the", "lack", "of", "resources", "for", "young", "men", "during", "critical", "times", "in", "their", "lives.", "What", "feminism", "does", "for", "women", "—", "providing", "girls", "with", "alternative", "media,", "cultural", "norms,", "and", "a", "language", "to", "understand", "sexism", "—", "is", "what", "we", "need", "for", "boys", "and", "young", "men.", "Jessica", "Valenti’s", "status", "as", "an", "authority", "on", "“what", "we", "need", "for", "boys", "and", "young", "men”", "is", "rather", "suspect,", "given", "that", "she", "only", "ever", "writes", "about", "males", "for", "the", "purpose", "of", "further", "demonizing", "and", "humiliating", "them.", "It", "would", "be", "impossible", "to", "exaggerate", "her", "hatred", "of", "men.", "Ilhan", "Omar", "doesn’t", "hate", "Jews", "as", "much", "as", "Jessica", "Valenti", "hates", "men.", "If", "her", "husband", "committed", "suicide", "tomorrow,", "it", "would", "be", "the", "happiest", "day", "of", "Jessica", "Valenti’s", "life.", "There", "actually", "are", "“resources", "for", "young", "men,”", "namely", "the", "three", "Rational", "Male", "books", "by", "Rollo", "Tomassi.", "Has", "he", "written", "some", "things", "that", "I", "might", "quibble", "with?", "Is", "he", "too", "bluntly", "cynical", "about", "women?", "Perhaps,", "but", "many", "readers", "have", "attested", "that", "The", "Rational", "Male", "is", "a", "life-saving", "book,", "one", "that", "provides", "men", "a", "positive", "approach", "to", "masculinity,", "especially", "in", "terms", "of", "helping", "them", "understand", "problems", "of", "relationships", "with", "women.", "I", "don’t", "know", "if", "there", "was", "much", "hope", "for", "Grant", "Amato", "—", "some", "losers", "are", "just", "too", "far", "gone", "down", "the", "road", "to", "destruction", "—", "but", "men", "who", "have", "read", "Rollo’s", "books" ], [ "say", "that", "he", "has", "helped", "them", "analyze", "their", "problems", "and", "find", "construction", "solutions.", "Pretty", "doggone", "sure", "he’s", "against", "spending", "$200,000", "on", "a", "Bulgarian", "camgirl,", "anyway.", "Share", "this:", "Share", "Twitter", "Facebook", "Reddit", "Comments" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "it", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "In", "January,", "I", "wrote", "about", "the", "case", "of", "Grant", "Amato", "(“Florida", "Man", "Kills", "Family", "After", "Stealing", "Money", "to", "Contact", "a", "Bulgarian", "Whore”),", "sarcastically", "making", "what", "seemed", "to", "me", "a", "rather", "obvious", "point:", "If", "you", "were", "going", "to", "steal", "$200,000", "for", "a", "whore,", "why", "wouldn’t", "you", "find", "a", "local", "whore,", "instead", "of", "some", "whore", "in", "Bulgaria", "you", "met", "via", "the", "Internet?", "Like,", "I", "don’t", "know", "the", "going", "rate", "for", "whores", "in", "Seminole", "County,", "Florida,", "but", "I’m", "pretty", "sure", "$200,000", "would", "buy", "a", "lot", "of", "time", "with", "whores.", "Amato", "killed", "his", "parents", "and", "younger", "brother", "because", "he", "believed", "he", "was", "in", "a", "“relationship”", "with", "this", "Bulgarian", "camgirl,", "and", "his", "family", "—", "understandably", "angry", "that", "he", "had", "stole", "money", "from", "them", "to", "pay", "for", "Internet", "sessions", "with", "her", "—", "had", "insisted", "that", "he", "seek", "treatment", "for", "his", "“sex", "addiction.”", "Instead,", "he", "left", "the", "psychiatric", "treatment", "center", "early", "and", "murdered", "his", "family", "in", "cold", "blood:", "He", "first", "shot", "his", "mother", "as", "she", "sat", "at", "her", "computer", "desk.", "He", "then", "waited", "for", "his", "father", "to", "return", "home", "from", "work", "to", "shoot", "him", "too.", "Finally,", "several", "hours", "later,", "he", "shot", "dead", "his", "brother,", "who", "had", "come", "by", "the", "house", "to", "visit.", "Amato", "was", "sentenced", "to", "life", "in", "prison", "Monday,", "which", "prompted", "an", "opaque", "comment", "by", "Rational", "Male", "author", "Rollo", "Tomassi:", "This", "is", "why", "I", "say", "the", "Blue", "Pill", "is", "dangerous", "https://t.co/c6TMO5iXdq", "—", "Rollo", "Tomassi", "(@RationalMale)", "August", "14,", "2019", "Now,", "you", "may", "not", "catch", "Rollo’s", "meaning,", "even", "if", "you", "know", "that", "“red", "pill”", "is", "a", "phrase", "“borrowed", "from", "the", "1999", "film", "The", "Matrix", "[which]", "refers", "to", "seeing", "through", "socially", "accepted", "illusions", "to", "understand", "the", "brutal", "truths", "of", "human", "nature.”", "By", "contrast,", "when", "Rollo", "refers", "to", "“blue", "pill”", "thinking,", "he", "means", "among", "other", "things", "the", "unrealistic", "idealization", "of", "women", "which", "makes", "someone", "like", "Grant", "Amato", "think", "he’s", "in", "a", "“relationship”", "with", "a", "whore", "whose", "performances", "he", "has", "viewed", "via", "webcam.", "More", "generally,", "however,", "if", "“blue", "pill”", "thinking", "leads", "to", "sexual", "failure", "—", "and", "by", "definition,", "any", "man", "paying", "money", "to", "a", "camgirl", "is", "failing", "—", "then", "the", "consequences", "can", "be", "dangerous,", "as", "Rollo", "says.", "The", "common", "feminist", "complaint", "that", "the", "“red", "pill”", "community", "is", "about", "misogyny", "(hatred", "of", "women)", "rests", "upon", "the", "implicit", "premise", "that", "sexual", "behavior", "is", "a", "zero-sum", "game", "in", "which", "male", "success", "is", "inherently", "oppressive", "to", "women.", "Feminists", "believe", "that", "women", "should", "possess", "a", "sort", "of", "totalitarian", "monopoly", "on", "sexual", "power,", "and", "generally", "seek", "to", "exercise", "this", "power", "by", "enforcing", "rules", "that", "make", "heterosexual", "relationships", "an", "ordeal", "in", "which", "men,", "like", "lab", "rats", "in", "a", "Skinner", "box,", "are", "required", "to", "respond", "exactly", "as", "women", "wish,", "or", "risk", "disastrous", "punishment.", "Men", "who", "attempt", "to", "cooperate", "with", "these", "rules", "—", "“blue", "pill”", "men", "—", "are", "playing", "a", "losing", "game,", "because", "such", "cooperation", "ultimately", "renders", "them", "uninteresting", "to", "women,", "who", "become", "bored", "with", "their", "easy", "conquest", "of", "the", "kind", "of", "man", "who", "is", "willing", "to", "be", "a", "woman’s", "household", "pet.", "What", "the", "“blue", "pill”", "approach", "produces", "is", "men", "who", "are", "so", "completely", "oriented", "toward", "doing", "whatever", "women", "want", "that", "he", "ceases", "to", "have", "any", "independent", "identity.", "He", "becomes", "something", "like", "Andrew", "Golis,", "an", "obscure", "nonentity", "known", "only", "as", "“Jessica", "Valenti’s", "husband”", "(and", "her", "recent", "memoir", "expressed", "how", "thoroughly", "she", "despises", "him).", "Oh,", "and", "speaking", "of", "the", "she-devil:", "I’ve", "written", "before", "about", "the", "lack", "of", "resources", "for", "young", "men", "during", "critical", "times", "in", "their", "lives.", "What", "feminism", "does", "for", "women", "—", "providing", "girls", "with", "alternative", "media,", "cultural", "norms,", "and", "a", "language", "to", "understand", "sexism", "—", "is", "what", "we", "need", "for", "boys", "and", "young", "men.", "Jessica", "Valenti’s", "status", "as", "an", "authority", "on", "“what", "we", "need", "for", "boys", "and", "young", "men”", "is", "rather", "suspect,", "given", "that", "she", "only", "ever", "writes", "about", "males", "for", "the", "purpose", "of", "further", "demonizing", "and", "humiliating", "them.", "It", "would", "be", "impossible", "to", "exaggerate", "her", "hatred", "of", "men.", "Ilhan", "Omar", "doesn’t", "hate", "Jews", "as", "much", "as", "Jessica", "Valenti", "hates", "men.", "If", "her", "husband", "committed", "suicide", "tomorrow,", "it", "would", "be", "the", "happiest", "day", "of", "Jessica", "Valenti’s", "life.", "There", "actually", "are", "“resources", "for", "young", "men,”", "namely", "the", "three", "Rational", "Male", "books", "by", "Rollo", "Tomassi.", "Has", "he", "written", "some", "things", "that", "I", "might", "quibble", "with?", "Is", "he", "too", "bluntly", "cynical", "about", "women?", "Perhaps,", "but", "many", "readers", "have", "attested", "that", "The", "Rational", "Male", "is", "a", "life-saving", "book,", "one", "that", "provides", "men", "a", "positive", "approach", "to", "masculinity,", "especially", "in", "terms", "of", "helping", "them", "understand", "problems", "of", "relationships", "with", "women.", "I", "don’t", "know", "if", "there", "was", "much", "hope", "for", "Grant", "Amato", "—", "some", "losers", "are", "just", "too", "far", "gone", "down", "the", "road", "to", "destruction", "—", "but", "men", "who", "have", "read", "Rollo’s", "books" ] ], [ [ "say", "that", "he", "has", "helped", "them", "analyze", "their", "problems", "and", "find", "construction", "solutions.", "Pretty", "doggone", "sure", "he’s", "against", "spending", "$200,000", "on", "a", "Bulgarian", "camgirl,", "anyway.", "Share", "this:", "Share", "Twitter", "Facebook", "Reddit", "Comments" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "They", "seem", "to", "be", "almost", "everywhere,", "in", "places", "old", "and", "new,", "no", "age", "spared.", "Sleeping", "on", "cardboard", "or", "bare", "ground,", "the", "homeless", "come", "together", "under", "bridges", "and", "trees,", "their", "belongings", "in", "plastic", "bags", "symbolising", "lives", "on", "the", "move.", "Many", "have", "arrived", "on", "the", "streets", "just", "recently,", "victims", "of", "the", "same", "prosperity", "that", "has", "transformed", "cities", "across", "the", "US", "West", "Coast.", "As", "officials", "struggle", "to", "respond", "to", "this", "growing", "crisis,", "some", "say", "things", "are", "likely", "to", "get", "worse.", "Vibrant", "Portland,", "Oregon's", "largest", "city,", "has", "long", "lured", "many.", "It", "is", "the", "City", "of", "Roses,", "of", "pleasant", "climate,", "rich", "culture", "and", "progressive", "thinking.", "It", "is", "also", "an", "innovation", "hub,", "part", "of", "what", "is", "called", "Silicon", "Forest,", "and", "new", "residents", "have", "moved", "here", "in", "these", "post-recession", "years", "attracted", "by", "its", "high-tech", "companies", "and", "their", "well-paid", "jobs.", "But", "the", "bonanza,", "unsurprisingly,", "has", "not", "come", "to", "everyone.", "Booming", "demand", "in", "an", "area", "with", "limited", "housing", "offers", "quickly", "drove", "the", "cost", "of", "living", "up,", "and", "those", "who", "were", "financially", "on", "the", "limit", "lost", "the", "ability", "they", "once", "had", "to", "afford", "a", "place.", "Many", "were", "rescued", "by", "family", "and", "friends,", "or", "government", "programmes", "and", "non-profit", "groups.", "Others,", "however,", "ended", "up", "homeless.", "The", "lucky", "ones", "have", "found", "space", "in", "public", "shelters.", "Not", "a", "few", "are", "now", "in", "tents", "and", "vehicles", "on", "the", "streets.", "\"Even", "though", "the", "economy", "has", "never", "been", "stronger,\"", "Mayor", "Ted", "Wheeler,", "a", "Democrat,", "said,", "\"inequality", "[is]", "growing", "at", "an", "alarming", "rate", "and", "the", "benefits", "from", "a", "[growing]", "economy", "are", "increasingly", "concentrated", "in", "fewer", "and", "fewer", "hands...", "We", "have", "increasing", "disparity", "all", "across", "the", "United", "States,", "and", "that's", "definitely", "impacting", "people.\"", "His", "city", "is", "indeed", "not", "alone.", "Homelessness", "has", "increased", "in", "other", "thriving", "West", "Coast", "cities", "that", "are", "destinations", "for", "young,", "well-educated", "workers,", "like", "San", "Francisco", "and", "Seattle,", "where", "the", "blame", "has", "also", "largely", "fallen", "on", "rapidly", "rising", "costs", "and", "evictions.", "Exact", "numbers", "are", "always", "hard", "to", "come", "by", "but", "553,742", "people", "were", "homeless", "on", "a", "single", "night", "across", "the", "US", "in", "2017,", "the", "Department", "of", "Housing", "and", "Urban", "Development", "said,", "the", "first", "rise", "in", "seven", "years.", "(The", "figure,", "however,", "was", "still", "13%", "lower", "than", "in", "2010.)", "Declines", "in", "30", "states", "were", "overshadowed", "by", "big", "surges", "elsewhere,", "with", "California,", "Oregon", "and", "Washington", "among", "the", "worst.", "Los", "Angeles,", "where", "the", "situation", "has", "been", "described", "as", "unprecedented,", "had", "more", "than", "50,000", "people", "without", "homes,", "behind", "only", "New", "York", "City,", "which", "had", "some", "75,000.", "Joseph", "Gordon,", "known", "as", "Tequila,", "has", "lived", "in", "a", "homeless", "camp", "called", "Hazelnut", "Grove", "since", "its", "creation", "in", "2015,", "when", "Portland", "first", "declared", "a", "state", "of", "emergency", "over", "the", "crisis.", "\"It's", "very", "scary.", "[The]", "people", "I", "have", "come", "across,\"", "said", "the", "37-year-old,", "\"are", "from", "every", "single", "walk", "of", "life.", "And", "the", "homeless", "population", "is", "getting", "bigger", "and", "bigger.\"", "Multnomah", "County", "reported", "4,177", "people", "homeless", "on", "a", "single", "night", "last", "year,", "a", "10%", "rise", "from", "2015", "-", "many", "believed", "the", "number", "was", "even", "higher.", "Exposing", "tensions,", "the", "president", "of", "Portland", "Police", "Association", "controversially", "said", "in", "July", "the", "city", "had", "become", "\"a", "cesspool\",", "a", "comment", "the", "mayor", "dismissed", "as", "\"ridiculous\".", "Tequila", "arrived", "from", "Cincinnati,", "Ohio,", "in", "2011", "and", "said", "they", "(Tequila", "is", "a", "transgender", "man", "and", "asks", "to", "be", "referred", "by", "this", "pronoun)", "became", "homeless", "after", "losing", "the", "apartment", "they", "shared", "with", "a", "former", "violent", "partner.", "\"Being", "out", "on", "the", "street", "you", "deal", "with", "all", "sorts", "of", "things", "[like]", "having", "to", "relax", "with", "living", "with", "rats.", "You", "also", "start", "to", "appreciate", "running", "water", "or", "when", "you", "can", "go", "to", "the", "bathroom", "anytime", "you", "want,\"", "said", "Tequila.", "(People", "usually", "thought", "Tequila", "was", "Mexican", "because", "of", "the", "colour", "of", "their", "skin,", "and", "the", "nickname", "was", "in", "reference", "to", "Jose", "Cuervo,", "the", "tequila", "brand.)", "The", "self-governed", "community", "of", "small", "wooden", "structures", "next", "to", "a", "highway", "had", "more", "than", "a", "dozen", "residents,", "half", "of", "them", "with", "some", "sort", "of", "income,", "Tequila", "said.", "\"If", "there", "was", "access", "to", "actual", "affordable", "housing", "they", "would", "take", "it.\"", "In", "Portland,", "the", "rent", "of", "a", "one-bed", "flat", "is,", "on", "average,", "$1,136", "(£867),", "which", "is", "out", "of", "reach", "for", "those", "who", "rely", "on", "Social", "Security", "cheques,", "topped", "at", "$735", "locally,", "or", "earn", "the", "minimum", "wage,", "$12", "per", "hour.", "(Officials", "said", "half", "of", "the", "1,300", "units", "to", "be", "created", "would", "be", "reserved", "to", "those", "with", "extremely", "low", "income.)", "Elderly", "people", "and", "minorities", "have", "been", "disproportionally", "affected,", "according", "to", "a", "study", "by", "Portland", "State", "University,", "which", "said", "technology", "could", "result", "in", "thousands", "of", "low-paid", "jobs", "being", "cut,", "probably", "making", "things", "even", "worse.", "\"We", "have", "a", "housing", "market", "that's", "really", "unaffordable", "for", "folks", "at", "the", "lowest", "income", "level,\"", "said", "Shannon", "Singleton,", "Executive", "Director", "of", "Join,", "a", "charity", "that", "helps", "homeless", "people", "return", "to", "permanent", "housing.", "\"There's", "a", "real", "lack", "of", "hope.", "Folks", "are", "struggling", "to", "see", "the", "ability", "to", "end", "their" ], [ "homelessness", "and", "get", "back", "in", "the", "[market].\"", "While", "some", "defend", "Tequila's", "camp", "as", "a", "model", "for", "an", "alternative", "solution,", "authorities", "have", "said", "it", "will,", "eventually,", "have", "to", "go.", "No", "date", "has", "been", "set", "yet", "but", "there", "have", "been", "troubles", "with", "nearby", "neighbours", "recently.", "Homelessness,", "in", "Portland", "and", "beyond,", "seems", "to", "be", "more", "visible", "than", "ever.", "Residents", "are", "growing", "frustrated", "with", "the", "smell", "of", "urine,", "human", "faeces", "and", "abandoned", "objects", "littering", "public", "spaces", "and,", "sometimes,", "their", "own", "doorsteps.", "In", "certain", "places,", "there", "is", "the", "feeling", "that", "this", "is", "a", "fight", "being", "lost.", "But", "this", "is", "a", "crisis", "long", "in", "the", "making.", "Cuts", "by", "the", "federal", "government", "to", "affordable", "housing", "programmes", "and", "mental", "health", "facilities", "in", "the", "last", "few", "decades", "helped", "send", "many", "to", "the", "streets", "nationwide,", "officials", "and", "service", "providers", "said,", "as", "local", "authorities", "were", "unable", "to", "fill", "the", "gaps.", "The", "current", "affordability", "problem", "is", "now", "adding", "to", "it.", "Australian", "academic", "Philip", "Alston,", "the", "UN", "special", "rapporteur", "on", "extreme", "poverty", "and", "human", "rights,", "travelled", "across", "the", "US", "for", "two", "weeks", "last", "December", "in", "a", "mission", "that", "included", "visits", "to", "Los", "Angeles", "and", "San", "Francisco.", "It", "resulted", "in", "a", "scathing", "report", "in", "which", "he", "said", "the", "American", "dream", "was,", "for", "many,", "rapidly", "becoming", "the", "American", "illusion", "-", "the", "Trump", "administration", "strongly", "criticised", "his", "findings.", "The", "future,", "he", "warned", "in", "an", "interview,", "did", "not", "look", "promising.", "\"The", "federal", "government's", "policies", "under", "this", "administration", "have", "been", "to", "cut", "back,", "as", "much", "as", "possible,", "on", "various", "housing", "benefits", "and", "I", "think", "the", "worst", "is", "probably", "yet", "to", "come.\"", "Other", "rich", "countries", "have", "faced", "rising", "homelessness,", "too,", "as", "the", "most", "vulnerable", "feel", "the", "burden", "of", "austerity", "policies,", "rising", "costs", "and", "unemployment.", "But", "in", "most", "parts", "of", "Europe,", "for", "example,", "there", "was", "still", "a", "\"robust", "welfare", "safety", "net\",", "Mr", "Alston", "said,", "to", "help", "those", "at", "risk.", "\"In", "essence,", "if", "you're", "in", "Europe,", "you", "get", "access", "to", "necessary", "health", "care,", "psychological,", "physical", "rehabilitation...", "That", "contrasts", "dramatically", "with", "the", "US.\"", "Across", "the", "country,", "many", "say", "the", "homeless", "are", "unfairly", "targeted", "by", "authorities", "and", "that", "they", "end", "up", "criminalised", "by", "their", "status", "when", "accused", "of", "offences", "like", "sleeping", "rough,", "begging", "and", "public", "urination.", "In", "August,", "a", "federal", "appeals", "court", "ruled", "that", "people", "could", "not", "be", "prosecuted", "for", "sleeping", "on", "the", "streets", "when", "there", "was", "no", "shelter", "available.", "In", "Portland,", "the", "police", "oversight", "agency", "is", "reviewing", "how", "officers", "interact", "with", "homeless", "people", "-", "many", "suffering", "from", "drug", "addiction", "and", "mental", "health", "issues", "-", "after", "a", "report", "suggested", "they", "accounted", "for", "52%", "of", "the", "arrests", "recorded", "last", "year,", "despite", "being", "a", "tiny", "fraction", "of", "the", "local", "population", "of", "some", "640,000.", "\"People", "are", "simply", "trying", "to", "survive", "and", "they", "don't", "have", "means", "to", "do", "so,\"", "said", "Kimberly", "McCullough,", "Policy", "Director", "of", "the", "American", "Civil", "Liberties", "Union", "(ACLU)", "of", "Oregon.", "\"We're", "seeing", "a", "crisis", "of", "our", "humanity", "and", "how", "we're", "going", "to", "treat", "and", "help", "each", "other.\"", "Tequila,", "however,", "was", "not", "surprised.", "\"Of", "course", "there", "are", "tensions,\"", "they", "said.", "\"If", "a", "police", "officer", "is", "having", "a", "bad", "day...", "the", "easiest", "target", "is", "a", "homeless", "person,", "especially", "the", "ones", "who", "are", "by", "themselves.\"", "Back", "at", "Hazelnut", "Grove,", "Tequila,", "who", "had", "found", "a", "part-time", "job,", "was", "asking", "for", "donations", "of", "toilet", "paper,", "garbage", "bags", "and", "shampoo.", "They", "were", "gathering", "documents", "to", "join", "a", "local", "affordable", "housing", "programme", "but", "did", "not", "expect", "to", "move", "from", "the", "camp", "any", "time", "soon.", "\"A", "high", "homeless", "situation", "is", "not", "a", "good", "[sign],", "especially", "when", "you're", "the", "richest", "country,\"", "Tequila", "said.", "\"There's", "very", "little", "hope.", "It's", "a", "dire", "situation.\"", "Follow", "Hugo", "on", "Twitter:", "@hugobachega" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "They", "seem", "to", "be", "almost", "everywhere,", "in", "places", "old", "and", "new,", "no", "age", "spared.", "Sleeping", "on", "cardboard", "or", "bare", "ground,", "the", "homeless", "come", "together", "under", "bridges", "and", "trees,", "their", "belongings", "in", "plastic", "bags", "symbolising", "lives", "on", "the", "move.", "Many", "have", "arrived", "on", "the", "streets", "just", "recently,", "victims", "of", "the", "same", "prosperity", "that", "has", "transformed", "cities", "across", "the", "US", "West", "Coast.", "As", "officials", "struggle", "to", "respond", "to", "this", "growing", "crisis,", "some", "say", "things", "are", "likely", "to", "get", "worse.", "Vibrant", "Portland,", "Oregon's", "largest", "city,", "has", "long", "lured", "many.", "It", "is", "the", "City", "of", "Roses,", "of", "pleasant", "climate,", "rich", "culture", "and", "progressive", "thinking.", "It", "is", "also", "an", "innovation", "hub,", "part", "of", "what", "is", "called", "Silicon", "Forest,", "and", "new", "residents", "have", "moved", "here", "in", "these", "post-recession", "years", "attracted", "by", "its", "high-tech", "companies", "and", "their", "well-paid", "jobs.", "But", "the", "bonanza,", "unsurprisingly,", "has", "not", "come", "to", "everyone.", "Booming", "demand", "in", "an", "area", "with", "limited", "housing", "offers", "quickly", "drove", "the", "cost", "of", "living", "up,", "and", "those", "who", "were", "financially", "on", "the", "limit", "lost", "the", "ability", "they", "once", "had", "to", "afford", "a", "place.", "Many", "were", "rescued", "by", "family", "and", "friends,", "or", "government", "programmes", "and", "non-profit", "groups.", "Others,", "however,", "ended", "up", "homeless.", "The", "lucky", "ones", "have", "found", "space", "in", "public", "shelters.", "Not", "a", "few", "are", "now", "in", "tents", "and", "vehicles", "on", "the", "streets.", "\"Even", "though", "the", "economy", "has", "never", "been", "stronger,\"", "Mayor", "Ted", "Wheeler,", "a", "Democrat,", "said,", "\"inequality", "[is]", "growing", "at", "an", "alarming", "rate", "and", "the", "benefits", "from", "a", "[growing]", "economy", "are", "increasingly", "concentrated", "in", "fewer", "and", "fewer", "hands...", "We", "have", "increasing", "disparity", "all", "across", "the", "United", "States,", "and", "that's", "definitely", "impacting", "people.\"", "His", "city", "is", "indeed", "not", "alone.", "Homelessness", "has", "increased", "in", "other", "thriving", "West", "Coast", "cities", "that", "are", "destinations", "for", "young,", "well-educated", "workers,", "like", "San", "Francisco", "and", "Seattle,", "where", "the", "blame", "has", "also", "largely", "fallen", "on", "rapidly", "rising", "costs", "and", "evictions.", "Exact", "numbers", "are", "always", "hard", "to", "come", "by", "but", "553,742", "people", "were", "homeless", "on", "a", "single", "night", "across", "the", "US", "in", "2017,", "the", "Department", "of", "Housing", "and", "Urban", "Development", "said,", "the", "first", "rise", "in", "seven", "years.", "(The", "figure,", "however,", "was", "still", "13%", "lower", "than", "in", "2010.)", "Declines", "in", "30", "states", "were", "overshadowed", "by", "big", "surges", "elsewhere,", "with", "California,", "Oregon", "and", "Washington", "among", "the", "worst.", "Los", "Angeles,", "where", "the", "situation", "has", "been", "described", "as", "unprecedented,", "had", "more", "than", "50,000", "people", "without", "homes,", "behind", "only", "New", "York", "City,", "which", "had", "some", "75,000.", "Joseph", "Gordon,", "known", "as", "Tequila,", "has", "lived", "in", "a", "homeless", "camp", "called", "Hazelnut", "Grove", "since", "its", "creation", "in", "2015,", "when", "Portland", "first", "declared", "a", "state", "of", "emergency", "over", "the", "crisis.", "\"It's", "very", "scary.", "[The]", "people", "I", "have", "come", "across,\"", "said", "the", "37-year-old,", "\"are", "from", "every", "single", "walk", "of", "life.", "And", "the", "homeless", "population", "is", "getting", "bigger", "and", "bigger.\"", "Multnomah", "County", "reported", "4,177", "people", "homeless", "on", "a", "single", "night", "last", "year,", "a", "10%", "rise", "from", "2015", "-", "many", "believed", "the", "number", "was", "even", "higher.", "Exposing", "tensions,", "the", "president", "of", "Portland", "Police", "Association", "controversially", "said", "in", "July", "the", "city", "had", "become", "\"a", "cesspool\",", "a", "comment", "the", "mayor", "dismissed", "as", "\"ridiculous\".", "Tequila", "arrived", "from", "Cincinnati,", "Ohio,", "in", "2011", "and", "said", "they", "(Tequila", "is", "a", "transgender", "man", "and", "asks", "to", "be", "referred", "by", "this", "pronoun)", "became", "homeless", "after", "losing", "the", "apartment", "they", "shared", "with", "a", "former", "violent", "partner.", "\"Being", "out", "on", "the", "street", "you", "deal", "with", "all", "sorts", "of", "things", "[like]", "having", "to", "relax", "with", "living", "with", "rats.", "You", "also", "start", "to", "appreciate", "running", "water", "or", "when", "you", "can", "go", "to", "the", "bathroom", "anytime", "you", "want,\"", "said", "Tequila.", "(People", "usually", "thought", "Tequila", "was", "Mexican", "because", "of", "the", "colour", "of", "their", "skin,", "and", "the", "nickname", "was", "in", "reference", "to", "Jose", "Cuervo,", "the", "tequila", "brand.)", "The", "self-governed", "community", "of", "small", "wooden", "structures", "next", "to", "a", "highway", "had", "more", "than", "a", "dozen", "residents,", "half", "of", "them", "with", "some", "sort", "of", "income,", "Tequila", "said.", "\"If", "there", "was", "access", "to", "actual", "affordable", "housing", "they", "would", "take", "it.\"", "In", "Portland,", "the", "rent", "of", "a", "one-bed", "flat", "is,", "on", "average,", "$1,136", "(£867),", "which", "is", "out", "of", "reach", "for", "those", "who", "rely", "on", "Social", "Security", "cheques,", "topped", "at", "$735", "locally,", "or", "earn", "the", "minimum", "wage,", "$12", "per", "hour.", "(Officials", "said", "half", "of", "the", "1,300", "units", "to", "be", "created", "would", "be", "reserved", "to", "those", "with", "extremely", "low", "income.)", "Elderly", "people", "and", "minorities", "have", "been", "disproportionally", "affected,", "according", "to", "a", "study", "by", "Portland", "State", "University,", "which", "said", "technology", "could", "result", "in", "thousands", "of", "low-paid", "jobs", "being", "cut,", "probably", "making", "things", "even", "worse.", "\"We", "have", "a", "housing", "market", "that's", "really", "unaffordable", "for", "folks", "at", "the", "lowest", "income", "level,\"", "said", "Shannon", "Singleton,", "Executive", "Director", "of", "Join,", "a", "charity", "that", "helps", "homeless", "people", "return", "to", "permanent", "housing.", "\"There's", "a", "real", "lack", "of", "hope.", "Folks", "are", "struggling", "to", "see", "the", "ability", "to", "end", "their" ] ], [ [ "homelessness", "and", "get", "back", "in", "the", "[market].\"", "While", "some", "defend", "Tequila's", "camp", "as", "a", "model", "for", "an", "alternative", "solution,", "authorities", "have", "said", "it", "will,", "eventually,", "have", "to", "go.", "No", "date", "has", "been", "set", "yet", "but", "there", "have", "been", "troubles", "with", "nearby", "neighbours", "recently.", "Homelessness,", "in", "Portland", "and", "beyond,", "seems", "to", "be", "more", "visible", "than", "ever.", "Residents", "are", "growing", "frustrated", "with", "the", "smell", "of", "urine,", "human", "faeces", "and", "abandoned", "objects", "littering", "public", "spaces", "and,", "sometimes,", "their", "own", "doorsteps.", "In", "certain", "places,", "there", "is", "the", "feeling", "that", "this", "is", "a", "fight", "being", "lost.", "But", "this", "is", "a", "crisis", "long", "in", "the", "making.", "Cuts", "by", "the", "federal", "government", "to", "affordable", "housing", "programmes", "and", "mental", "health", "facilities", "in", "the", "last", "few", "decades", "helped", "send", "many", "to", "the", "streets", "nationwide,", "officials", "and", "service", "providers", "said,", "as", "local", "authorities", "were", "unable", "to", "fill", "the", "gaps.", "The", "current", "affordability", "problem", "is", "now", "adding", "to", "it.", "Australian", "academic", "Philip", "Alston,", "the", "UN", "special", "rapporteur", "on", "extreme", "poverty", "and", "human", "rights,", "travelled", "across", "the", "US", "for", "two", "weeks", "last", "December", "in", "a", "mission", "that", "included", "visits", "to", "Los", "Angeles", "and", "San", "Francisco.", "It", "resulted", "in", "a", "scathing", "report", "in", "which", "he", "said", "the", "American", "dream", "was,", "for", "many,", "rapidly", "becoming", "the", "American", "illusion", "-", "the", "Trump", "administration", "strongly", "criticised", "his", "findings.", "The", "future,", "he", "warned", "in", "an", "interview,", "did", "not", "look", "promising.", "\"The", "federal", "government's", "policies", "under", "this", "administration", "have", "been", "to", "cut", "back,", "as", "much", "as", "possible,", "on", "various", "housing", "benefits", "and", "I", "think", "the", "worst", "is", "probably", "yet", "to", "come.\"", "Other", "rich", "countries", "have", "faced", "rising", "homelessness,", "too,", "as", "the", "most", "vulnerable", "feel", "the", "burden", "of", "austerity", "policies,", "rising", "costs", "and", "unemployment.", "But", "in", "most", "parts", "of", "Europe,", "for", "example,", "there", "was", "still", "a", "\"robust", "welfare", "safety", "net\",", "Mr", "Alston", "said,", "to", "help", "those", "at", "risk.", "\"In", "essence,", "if", "you're", "in", "Europe,", "you", "get", "access", "to", "necessary", "health", "care,", "psychological,", "physical", "rehabilitation...", "That", "contrasts", "dramatically", "with", "the", "US.\"", "Across", "the", "country,", "many", "say", "the", "homeless", "are", "unfairly", "targeted", "by", "authorities", "and", "that", "they", "end", "up", "criminalised", "by", "their", "status", "when", "accused", "of", "offences", "like", "sleeping", "rough,", "begging", "and", "public", "urination.", "In", "August,", "a", "federal", "appeals", "court", "ruled", "that", "people", "could", "not", "be", "prosecuted", "for", "sleeping", "on", "the", "streets", "when", "there", "was", "no", "shelter", "available.", "In", "Portland,", "the", "police", "oversight", "agency", "is", "reviewing", "how", "officers", "interact", "with", "homeless", "people", "-", "many", "suffering", "from", "drug", "addiction", "and", "mental", "health", "issues", "-", "after", "a", "report", "suggested", "they", "accounted", "for", "52%", "of", "the", "arrests", "recorded", "last", "year,", "despite", "being", "a", "tiny", "fraction", "of", "the", "local", "population", "of", "some", "640,000.", "\"People", "are", "simply", "trying", "to", "survive", "and", "they", "don't", "have", "means", "to", "do", "so,\"", "said", "Kimberly", "McCullough,", "Policy", "Director", "of", "the", "American", "Civil", "Liberties", "Union", "(ACLU)", "of", "Oregon.", "\"We're", "seeing", "a", "crisis", "of", "our", "humanity", "and", "how", "we're", "going", "to", "treat", "and", "help", "each", "other.\"", "Tequila,", "however,", "was", "not", "surprised.", "\"Of", "course", "there", "are", "tensions,\"", "they", "said.", "\"If", "a", "police", "officer", "is", "having", "a", "bad", "day...", "the", "easiest", "target", "is", "a", "homeless", "person,", "especially", "the", "ones", "who", "are", "by", "themselves.\"", "Back", "at", "Hazelnut", "Grove,", "Tequila,", "who", "had", "found", "a", "part-time", "job,", "was", "asking", "for", "donations", "of", "toilet", "paper,", "garbage", "bags", "and", "shampoo.", "They", "were", "gathering", "documents", "to", "join", "a", "local", "affordable", "housing", "programme", "but", "did", "not", "expect", "to", "move", "from", "the", "camp", "any", "time", "soon.", "\"A", "high", "homeless", "situation", "is", "not", "a", "good", "[sign],", "especially", "when", "you're", "the", "richest", "country,\"", "Tequila", "said.", "\"There's", "very", "little", "hope.", "It's", "a", "dire", "situation.\"", "Follow", "Hugo", "on", "Twitter:", "@hugobachega" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "The", "controversy", "over", "the", "painting", "led", "to", "two", "more", "questions:", "What", "is", "Fort", "Pillow?", "And", "what", "happened", "there?", "AD", "The", "battle", "to", "regain", "Fort", "Pillow", "began", "April", "12,", "1864,", "when", "Forrest", "led", "2,500", "Confederate", "cavalry", "in", "an", "attack", "on", "the", "fort", "about", "40", "miles", "north", "of", "Memphis,", "according", "to", "by", "the", "National", "Park", "Service.", "The", "fort", "was", "held", "by", "Union", "troops", "—", "including", "295", "white", "soldiers", "and", "262", "“colored”", "soldiers", "—", "under", "the", "command", "of", "Maj.", "Lionel", "F.", "Booth.", "AD", "The", "Confederates,", "including", "sharpshooters,", "unleashed", "a", "storm", "of", "bullets", "on", "the", "fort,", "killing", "Booth.", "Forrest", "demanded", "unconditional", "surrender.", "Although", "outnumbered", "by", "the", "Confederate", "soldiers,", "Maj.", "William", "F.", "Bradford,", "who", "had", "taken", "command", "of", "the", "Union", "troops,", "refused", "to", "surrender.", "“Confederates", "renewed", "the", "attack,", "soon", "overran", "the", "fort,", "and", "drove", "the", "Federals", "down", "the", "river’s", "bluff", "into", "a", "deadly", "cross", "fire,”", "according", "to", "the", "Park", "Service.", "As", "many", "as", "300", "Union", "soldiers", "—", "including", "200", "black", "soldiers", "—", "were", "killed.", "Many", "were", "shot", "point-blank", "in", "the", "head.", "Mack", "Leaming", "was", "the", "highest-ranking", "Union", "officer", "to", "survive", "the", "battle.", "His", "eyewitness", "account,", "written", "nearly", "30", "years", "later,", "on", "April", "14,", "1893,", "would", "stand", "as", "a", "testament", "to", "what", "happened", "at", "Fort", "Pillow.", "AD", "“Our", "line", "broke", "and", "many", "of", "the", "troops", "threw", "down", "their", "muskets", "and", "rushed", "down", "the", "bluff", "towards", "the", "river,", "the", "rebels", "meanwhile", "keeping", "up", "a", "murderous", "fire,”", "Leaming", "wrote,", "according", "to", "the", "Gilder", "Lehrman", "Institute", "of", "American", "History,", "a", "nonprofit", "group", "dedicated", "to", "history", "education.", "AD", "”Many", "of", "the", "colored", "soldiers,", "seeing", "that", "no", "quarters", "were", "to", "be", "given,", "madly", "leaped", "into", "the", "river,", "while", "the", "rebels", "stood", "on", "the", "banks", "or", "part", "way", "up", "the", "bluff,", "and", "shot", "at", "the", "heads", "of", "their", "victims.\"", "Leaming", "fell", "on", "the", "side", "of", "the", "bluff", "near", "the", "bank", "of", "the", "Mississippi", "River.", "“I", "could", "plainly", "see", "this", "firing", "and", "note", "the", "bullets", "striking", "the", "water", "around", "the", "black", "heads", "of", "the", "soldiers,", "until", "suddenly", "the", "muddy", "current", "became", "red", "and", "I", "saw", "another", "life", "sacrificed", "in", "the", "cause", "of", "the", "Union,”", "he", "wrote.", "AD", "Then", "Leaming", "noticed", "a", "black", "soldier", "in", "the", "river,", "clinging", "to", "life.", "“Two", "confederate", "soldiers", "pulled", "him", "out,”", "Leaming", "recalled.", "“He", "seemed", "to", "be", "wounded", "and", "crawled", "on", "his", "hands", "and", "knees.", "Finely", "[sic]", "one", "of", "the", "confederate", "soldiers", "placed", "his", "revolver", "to", "the", "head", "of", "the", "colored", "soldier", "and", "killed", "him.”", "Confederate", "soldiers", "pulled", "down", "the", "stars", "and", "stripes", "flag,", "Leaming", "wrote,", "“and", "hoisted", "the", "stars", "and", "bars.\"", "In", "May", "1864,", "the", "New", "York", "Times", "received", "a", "letter", "from", "a", "naval", "officer", "describing", "the", "bloody", "scene", "at", "Fort", "Pillow", "and", "demanding", "the", "Union", "government", "retaliate.", "AD", "“I", "write,", "because", "most", "of", "our", "crew", "are", "colored,", "and", "I", "feel", "personally", "interested", "in", "the", "retaliation", "which", "our", "Government", "may", "deal", "out", "to", "the", "rebels,", "when", "the", "fact", "of", "the", "merciless", "butchery", "is", "fully", "established,”", "Robert", "S.", "Critchell,", "an", "acting", "master’s", "mate,", "wrote", "to", "U.S.", "Rep.", "Henry", "Blow", "(R-Mo.).", "AD", "He", "also", "detailed", "the", "how", "the", "“colored”", "troops", "had", "been", "“murdered”", "by", "the", "Confederate", "soldiers.", "“I", "found", "many", "of", "the", "dead", "lying", "close", "along", "by", "the", "water’s", "edge,", "where", "they", "had", "evidently", "sought", "safety;", "they", "could", "not", "offer", "any", "resistance", "from", "the", "places", "where", "they", "were,", "in", "holes", "and", "cavilles", "along", "the", "banks,”", "Critchell", "wrote.", "“Most", "of", "them", "had", "two", "wounds.", "I", "saw", "several", "colored", "soldiers", "of", "the", "Sixth", "United", "States", "Artillery,", "with", "their", "eyes", "punched", "out", "with", "bayonets;", "many", "of", "them", "were", "shot", "twice", "and", "bayonetted", "also.\"", "AD", "Critchell", "was", "appalled", "by", "the", "gruesome", "scene", "of", "70", "black", "soldiers", "lying", "dead", "along", "the", "Mississippi", "River.", "“Going", "up", "into", "the", "fort,", "I", "saw", "there", "bodies", "partially", "consumed", "by", "fire,”", "Critchell", "wrote.", "“Whether", "burned", "before", "or", "after", "death", "I", "cannot", "say,", "any", "way", "there", "were", "several", "companies", "of", "rebels", "in", "the", "fort", "while", "these", "bodies", "were", "burning,", "and", "they", "could", "have", "pulled", "them", "out", "of", "the", "fire", "had", "they", "chosen", "to", "do", "so.”", "AD", "The", "“Fort", "Pillow", "Massacre”", "became", "a", "fervent", "rallying", "cry", "among", "Union", "troops,", "according", "to", "the", "National", "Park", "Service,", "“and", "cemented", "resolve", "to", "see", "the", "war", "through", "to", "its", "conclusion.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "controversy", "over", "the", "painting", "led", "to", "two", "more", "questions:", "What", "is", "Fort", "Pillow?", "And", "what", "happened", "there?", "AD", "The", "battle", "to", "regain", "Fort", "Pillow", "began", "April", "12,", "1864,", "when", "Forrest", "led", "2,500", "Confederate", "cavalry", "in", "an", "attack", "on", "the", "fort", "about", "40", "miles", "north", "of", "Memphis,", "according", "to", "by", "the", "National", "Park", "Service.", "The", "fort", "was", "held", "by", "Union", "troops", "—", "including", "295", "white", "soldiers", "and", "262", "“colored”", "soldiers", "—", "under", "the", "command", "of", "Maj.", "Lionel", "F.", "Booth.", "AD", "The", "Confederates,", "including", "sharpshooters,", "unleashed", "a", "storm", "of", "bullets", "on", "the", "fort,", "killing", "Booth.", "Forrest", "demanded", "unconditional", "surrender.", "Although", "outnumbered", "by", "the", "Confederate", "soldiers,", "Maj.", "William", "F.", "Bradford,", "who", "had", "taken", "command", "of", "the", "Union", "troops,", "refused", "to", "surrender.", "“Confederates", "renewed", "the", "attack,", "soon", "overran", "the", "fort,", "and", "drove", "the", "Federals", "down", "the", "river’s", "bluff", "into", "a", "deadly", "cross", "fire,”", "according", "to", "the", "Park", "Service.", "As", "many", "as", "300", "Union", "soldiers", "—", "including", "200", "black", "soldiers", "—", "were", "killed.", "Many", "were", "shot", "point-blank", "in", "the", "head.", "Mack", "Leaming", "was", "the", "highest-ranking", "Union", "officer", "to", "survive", "the", "battle.", "His", "eyewitness", "account,", "written", "nearly", "30", "years", "later,", "on", "April", "14,", "1893,", "would", "stand", "as", "a", "testament", "to", "what", "happened", "at", "Fort", "Pillow.", "AD", "“Our", "line", "broke", "and", "many", "of", "the", "troops", "threw", "down", "their", "muskets", "and", "rushed", "down", "the", "bluff", "towards", "the", "river,", "the", "rebels", "meanwhile", "keeping", "up", "a", "murderous", "fire,”", "Leaming", "wrote,", "according", "to", "the", "Gilder", "Lehrman", "Institute", "of", "American", "History,", "a", "nonprofit", "group", "dedicated", "to", "history", "education.", "AD", "”Many", "of", "the", "colored", "soldiers,", "seeing", "that", "no", "quarters", "were", "to", "be", "given,", "madly", "leaped", "into", "the", "river,", "while", "the", "rebels", "stood", "on", "the", "banks", "or", "part", "way", "up", "the", "bluff,", "and", "shot", "at", "the", "heads", "of", "their", "victims.\"", "Leaming", "fell", "on", "the", "side", "of", "the", "bluff", "near", "the", "bank", "of", "the", "Mississippi", "River.", "“I", "could", "plainly", "see", "this", "firing", "and", "note", "the", "bullets", "striking", "the", "water", "around", "the", "black", "heads", "of", "the", "soldiers,", "until", "suddenly", "the", "muddy", "current", "became", "red", "and", "I", "saw", "another", "life", "sacrificed", "in", "the", "cause", "of", "the", "Union,”", "he", "wrote.", "AD", "Then", "Leaming", "noticed", "a", "black", "soldier", "in", "the", "river,", "clinging", "to", "life.", "“Two", "confederate", "soldiers", "pulled", "him", "out,”", "Leaming", "recalled.", "“He", "seemed", "to", "be", "wounded", "and", "crawled", "on", "his", "hands", "and", "knees.", "Finely", "[sic]", "one", "of", "the", "confederate", "soldiers", "placed", "his", "revolver", "to", "the", "head", "of", "the", "colored", "soldier", "and", "killed", "him.”", "Confederate", "soldiers", "pulled", "down", "the", "stars", "and", "stripes", "flag,", "Leaming", "wrote,", "“and", "hoisted", "the", "stars", "and", "bars.\"", "In", "May", "1864,", "the", "New", "York", "Times", "received", "a", "letter", "from", "a", "naval", "officer", "describing", "the", "bloody", "scene", "at", "Fort", "Pillow", "and", "demanding", "the", "Union", "government", "retaliate.", "AD", "“I", "write,", "because", "most", "of", "our", "crew", "are", "colored,", "and", "I", "feel", "personally", "interested", "in", "the", "retaliation", "which", "our", "Government", "may", "deal", "out", "to", "the", "rebels,", "when", "the", "fact", "of", "the", "merciless", "butchery", "is", "fully", "established,”", "Robert", "S.", "Critchell,", "an", "acting", "master’s", "mate,", "wrote", "to", "U.S.", "Rep.", "Henry", "Blow", "(R-Mo.).", "AD", "He", "also", "detailed", "the", "how", "the", "“colored”", "troops", "had", "been", "“murdered”", "by", "the", "Confederate", "soldiers.", "“I", "found", "many", "of", "the", "dead", "lying", "close", "along", "by", "the", "water’s", "edge,", "where", "they", "had", "evidently", "sought", "safety;", "they", "could", "not", "offer", "any", "resistance", "from", "the", "places", "where", "they", "were,", "in", "holes", "and", "cavilles", "along", "the", "banks,”", "Critchell", "wrote.", "“Most", "of", "them", "had", "two", "wounds.", "I", "saw", "several", "colored", "soldiers", "of", "the", "Sixth", "United", "States", "Artillery,", "with", "their", "eyes", "punched", "out", "with", "bayonets;", "many", "of", "them", "were", "shot", "twice", "and", "bayonetted", "also.\"", "AD", "Critchell", "was", "appalled", "by", "the", "gruesome", "scene", "of", "70", "black", "soldiers", "lying", "dead", "along", "the", "Mississippi", "River.", "“Going", "up", "into", "the", "fort,", "I", "saw", "there", "bodies", "partially", "consumed", "by", "fire,”", "Critchell", "wrote.", "“Whether", "burned", "before", "or", "after", "death", "I", "cannot", "say,", "any", "way", "there", "were", "several", "companies", "of", "rebels", "in", "the", "fort", "while", "these", "bodies", "were", "burning,", "and", "they", "could", "have", "pulled", "them", "out", "of", "the", "fire", "had", "they", "chosen", "to", "do", "so.”", "AD", "The", "“Fort", "Pillow", "Massacre”", "became", "a", "fervent", "rallying", "cry", "among", "Union", "troops,", "according", "to", "the", "National", "Park", "Service,", "“and", "cemented", "resolve", "to", "see", "the", "war", "through", "to", "its", "conclusion.”" ] ] ]
[ [ "en" ] ]